modify ssh config + new pkgs
This commit is contained in:
parent
00aa4f1984
commit
83859e4027
@ -14,6 +14,7 @@
|
||||
wget
|
||||
#discord-canary
|
||||
vesktop
|
||||
discord
|
||||
cudaPackages_12.cudatoolkit
|
||||
python3
|
||||
gimp
|
||||
@ -32,6 +33,7 @@
|
||||
#intellephense
|
||||
firefoxpwa
|
||||
ffmpeg
|
||||
variety
|
||||
];
|
||||
|
||||
programs.nix-ld.enable = true;
|
||||
@ -47,4 +49,19 @@
|
||||
};
|
||||
# Allow unfree packages
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
# Install Steam
|
||||
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
|
||||
};
|
||||
|
||||
# nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
||||
# "steam"
|
||||
# "steam-original"
|
||||
# "steam-unwrapped"
|
||||
# "steam-run"
|
||||
# ];
|
||||
}
|
||||
|
@ -3,34 +3,34 @@
|
||||
{
|
||||
programs.ssh.extraConfig = ''
|
||||
Host prod1
|
||||
HostName prod1
|
||||
ForwardAgent yes
|
||||
Port 22222
|
||||
User xbazzi
|
||||
PubkeyAuthentication yes
|
||||
IdentityFile ~/.ssh/lan_id_ed25519
|
||||
HostName prod1
|
||||
ForwardAgent yes
|
||||
Port 22222
|
||||
User xbazzi
|
||||
PubkeyAuthentication yes
|
||||
IdentityFile ~/.ssh/lan_id_ed25519
|
||||
|
||||
Host nas-mgmt
|
||||
HostName nas-mgmt
|
||||
ForwardAgent yes
|
||||
User xbazzi
|
||||
IdentityFile ~/.ssh/lan_id_ed25519
|
||||
HostName nas-mgmt
|
||||
ForwardAgent yes
|
||||
User xbazzi
|
||||
IdentityFile ~/.ssh/lan_id_ed25519
|
||||
|
||||
Host nas
|
||||
HostName nas
|
||||
User xbazzi
|
||||
IdentityFile ~/.ssh/lan_id_ed25519
|
||||
HostName nas
|
||||
User xbazzi
|
||||
IdentityFile ~/.ssh/lan_id_ed25519
|
||||
|
||||
Host school
|
||||
HostName school
|
||||
ForwardAgent yes
|
||||
User xbazzi
|
||||
IdentityFile ~/.ssh/lan_id_ed25519
|
||||
HostName school
|
||||
ForwardAgent yes
|
||||
User xbazzi
|
||||
IdentityFile ~/.ssh/lan_id_ed25519
|
||||
|
||||
Host ext1-mgmt
|
||||
HostName ext1-mgmt
|
||||
ForwardAgent yes
|
||||
User xbazzi
|
||||
IdentityFile ~/.ssh/lan_id_ed25519
|
||||
HostName ext1-mgmt
|
||||
ForwardAgent yes
|
||||
User xbazzi
|
||||
IdentityFile ~/.ssh/lan_id_ed25519
|
||||
'';
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user