Compare commits

...

3 Commits

3 changed files with 9 additions and 1 deletions

View File

@@ -63,7 +63,6 @@
# > gaming < # # > gaming < #
prismlauncher prismlauncher
classicube classicube
steam
# > development < # # > development < #
podman podman

View File

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

8
hosts/modules/steam.nix Normal file
View File

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