diff --git a/users/alice/systems/artemision/configuration.nix b/users/alice/systems/artemision/configuration.nix index a01686b..6392936 100644 --- a/users/alice/systems/artemision/configuration.nix +++ b/users/alice/systems/artemision/configuration.nix @@ -11,6 +11,7 @@ ./polkit.nix ./pipewire.nix ./fingerprint.nix + ./steam.nix ]; time.timeZone = "America/New_York"; diff --git a/users/alice/systems/artemision/steam.nix b/users/alice/systems/artemision/steam.nix new file mode 100644 index 0000000..0d61923 --- /dev/null +++ b/users/alice/systems/artemision/steam.nix @@ -0,0 +1,16 @@ +{ + config, + lib, + pkgs, + ... +}: + +{ + programs.steam = { + enable = true; + remotePlay.openFirewall = true; + localNetworkGameTransfers.openFirewall = true; + extraCompatPackages = with pkgs; [ proton-ge-bin ]; + extest.enable = true; + }; +}