gunter: remove unused steamuser configuration

This commit is contained in:
2026-01-30 20:32:36 +01:00
parent 852547e53f
commit 7a8706cd4c
3 changed files with 4 additions and 27 deletions

View File

@@ -5,7 +5,6 @@
imports = [
./configuration.nix
./hardware-configuration.nix
./steamuser.nix
./nfs.nix
./ollama.nix
./streamdeck.nix

View File

@@ -1,23 +0,0 @@
{ pkgs, ... }:
{
environment.shells = with pkgs; [ zsh ];
services.xserver.desktopManager.xfce.enable = true;
programs.steam.enable = true;
programs.gamemode.enable = true;
services.flatpak.enable = true;
users.users.steam = {
isNormalUser = true;
initialPassword = "steam";
home = "/home/steam";
description = "Steam user";
shell = pkgs.zsh;
# Install some user packages
packages = with pkgs; [
firefox
mumble
easyeffects
];
};
}