enable Steam

This commit is contained in:
Keisuke Hirata 2025-02-02 16:40:00 +09:00
parent 0336d754d1
commit d40fbe7eed
2 changed files with 9 additions and 0 deletions

View File

@ -18,6 +18,7 @@
../../programs/v4l2.nix ../../programs/v4l2.nix
../../programs/desktop/hyprland.nix ../../programs/desktop/hyprland.nix
../../programs/fcitx.nix ../../programs/fcitx.nix
../../programs/steam.nix
]; ];
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
deno deno

8
programs/steam.nix Normal file
View File

@ -0,0 +1,8 @@
{
programs.steam = {
enable = true;
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
localNetworkGameTransfers.openFirewall = true; # Open ports in the firewall for Steam Local Network Game Transfers
};
}