about summary refs log tree commit diff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/systems/ssh.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/systems/ssh.nix b/modules/systems/ssh.nix
new file mode 100644
index 0000000..0ecca80
--- /dev/null
+++ b/modules/systems/ssh.nix
@@ -0,0 +1,5 @@
+{
+  # Enable the OpenSSH daemon.
+  services.openssh.enable = true;
+  services.openssh.permitRootLogin = "yes";
+}