feat: moved steam from home manager to packages

This commit is contained in:
2024-11-19 20:42:04 +01:00
parent 6f5142bfc6
commit 6490d5669d
3 changed files with 3 additions and 4 deletions

View File

@@ -14,7 +14,6 @@
./programs/neovim.nix
./programs/packages.nix
./programs/shell.nix
./programs/steam.nix
./programs/tmux.nix
./programs/vscodium.nix
# ./programs/yazi.nix

View File

@@ -26,6 +26,7 @@
./modules/remote-builder.nix
./modules/security.nix
./modules/ssh.nix
./modules/steam.nix
./modules/users.nix
./modules/vm.nix
]

View File

@@ -1,9 +1,8 @@
{ inputs, pkgs, ... }:
{
{ inputs, pkgs, ... }: {
programs.steam = {
enable = true;
extraCompatPackages = with pkgs; [
proton-ge-bin
]
];
};
}