secrets fixes
adds steam removes old ssh keys symlinks adds gnome extensions removes useless go paths
This commit is contained in:
5
config/nixos/packages/default.nix
Normal file
5
config/nixos/packages/default.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{ ... }: {
|
||||
imports = [
|
||||
./steam.nix
|
||||
];
|
||||
}
|
13
config/nixos/packages/steam.nix
Normal file
13
config/nixos/packages/steam.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
# In your configuration.nix
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
# Open ports in the firewall for Steam Remote Play
|
||||
remotePlay.openFirewall = true;
|
||||
# Open ports in the firewall for Source Dedicated Server
|
||||
dedicatedServer.openFirewall = true;
|
||||
# Open ports in the firewall for Steam Local Network Game Transfers
|
||||
localNetworkGameTransfers.openFirewall = true;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user