add steam

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
ahuston-0 2024-04-13 21:49:00 -04:00 committed by Alice Huston
parent e84b25e1a6
commit 3fc1292603
2 changed files with 17 additions and 0 deletions

View File

@ -11,6 +11,7 @@
./polkit.nix ./polkit.nix
./pipewire.nix ./pipewire.nix
./fingerprint.nix ./fingerprint.nix
./steam.nix
]; ];
time.timeZone = "America/New_York"; time.timeZone = "America/New_York";

View File

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