summary refs log tree commit diff stats
path: root/system/impermanence/mods/openssh.nix
diff options
context:
space:
mode:
Diffstat (limited to 'system/impermanence/mods/openssh.nix')
-rw-r--r--system/impermanence/mods/openssh.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/system/impermanence/mods/openssh.nix b/system/impermanence/mods/openssh.nix
new file mode 100644
index 0000000..656f96e
--- /dev/null
+++ b/system/impermanence/mods/openssh.nix
@@ -0,0 +1,10 @@
+{...}: {
+  environment.persistence."/srv".directories = [
+    {
+      directory = "/var/lib/sshd";
+      user = "root";
+      group = "root";
+      mode = "0755";
+    }
+  ];
+}