diff --git a/hosts/andromache/default.nix b/hosts/andromache/default.nix index 4ae0874..b0aa689 100644 --- a/hosts/andromache/default.nix +++ b/hosts/andromache/default.nix @@ -27,6 +27,7 @@ in ../../modules/desktops/niri ../../modules/backups ../../modules/bluetooth + ../../modules/gaming ../../modules/keyboard (import ../../modules/networking { inherit hostName; }) ../../modules/users diff --git a/modules/gaming/default.nix b/modules/gaming/default.nix new file mode 100644 index 0000000..1b9754a --- /dev/null +++ b/modules/gaming/default.nix @@ -0,0 +1,12 @@ +{ + nixpkgs.allowedUnfree = [ + "steam" + "steam-unwrapped" + ]; + + programs.steam = { + enable = true; + remotePlay.openFirewall = false; + dedicatedServer.openFirewall = false; + }; +}