diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/nvidia.nix | 6 | ||||
-rw-r--r-- | common/ssh.nix | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/common/nvidia.nix b/common/nvidia.nix new file mode 100644 index 0000000..df60136 --- /dev/null +++ b/common/nvidia.nix @@ -0,0 +1,6 @@ +{hardware, ...}: + +{ + # Import this config if gpu passthrough in docker containers + hardware.nvidia-container-toolkit.enable = true; +} diff --git a/common/ssh.nix b/common/ssh.nix index de931f5..d633fbb 100644 --- a/common/ssh.nix +++ b/common/ssh.nix @@ -9,6 +9,7 @@ AllowUsers = null; # Allows all users by default. Can be [ "user1" "user2" ] UseDns = true; X11Forwarding = false; + GatewayPorts = "yes"; PermitRootLogin = "no"; # "yes", "without-password", "prohibit-password", "forced-commands-only", "no" }; }; |