nixos/hosts/FredOS-Gaming.nix

21 lines
610 B
Nix
Raw Normal View History

2025-12-02 21:21:42 +00:00
{ config, pkgs, lib, ... }:
{
config = lib.mkIf (config.networking.hostName == "FredOS-Gaming") {
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
#Package name
2025-12-03 12:34:54 +00:00
lutris
2025-12-02 21:21:42 +00:00
];
2025-12-03 12:34:54 +00:00
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
};
2025-12-02 21:21:42 +00:00
};
}