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

@@ -247,9 +247,10 @@ in
}
];
workspace =
[ "special:special, on-created-empty:kitty, rounding:true, decorate:false, border:false" ]
++ cfg.extraWorkspaces;
workspace = [
"special:special, on-created-empty:kitty, rounding:true, decorate:false, border:false"
]
++ cfg.extraWorkspaces;
bindm = [
"$mainMod,mouse:272,movewindow"

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
];
};
}