diff options
Diffstat (limited to 'modules/root/ssh.nix')
-rw-r--r-- | modules/root/ssh.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/root/ssh.nix b/modules/root/ssh.nix new file mode 100644 index 0000000..9f6d54d --- /dev/null +++ b/modules/root/ssh.nix @@ -0,0 +1,8 @@ +{ + services.openssh = { + enable = true; + settings = { + X11Forwarding = true; + }; + }; +} |