fix steam

This commit is contained in:
valerie 2024-09-28 15:22:58 -04:00
parent 1c614a5a06
commit 287613be66
Signed by: valnyx
GPG key ID: CC10324DD962CB7E
2 changed files with 8 additions and 2 deletions

View file

@ -31,7 +31,6 @@ in {
blockbench blockbench
blender blender
prismlauncher prismlauncher
steam
unstable.vscode-fhs unstable.vscode-fhs
]); ]);
sessionVariables = { sessionVariables = {

View file

@ -93,7 +93,7 @@
# system-wide pkgs # system-wide pkgs
environment.systemPackages = builtins.attrValues { environment.systemPackages = builtins.attrValues {
inherit (pkgs) python3 fuse3 floorp localsend parsec-bin kanata; inherit (pkgs) python3 fuse3 floorp localsend parsec-bin kanata bubblewrap;
inherit (pkgs.unstable) neovim; inherit (pkgs.unstable) neovim;
}; };
@ -394,4 +394,11 @@
zlib zlib
libgit2 libgit2
]; ];
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
};
} }