summary refs log tree commit diff stats
path: root/hm/ssh
diff options
context:
space:
mode:
authorSilas Schöffel <sils@sils.li>2024-04-04 17:06:23 +0200
committerSilas Schöffel <sils@sils.li>2024-04-04 17:06:23 +0200
commit924ec30e7075ea7a9dbac569a537d876f9146850 (patch)
tree11ff56048f05536a1905490137333b3596d0ee18 /hm/ssh
parentusers/default.nix: delete (diff)
downloadnix-config-924ec30e7075ea7a9dbac569a537d876f9146850.tar.gz
nix-config-924ec30e7075ea7a9dbac569a537d876f9146850.zip
refactor: move users/sils dir to hm
Diffstat (limited to 'hm/ssh')
-rw-r--r--hm/ssh/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/hm/ssh/default.nix b/hm/ssh/default.nix
new file mode 100644
index 0000000..c7b8e20
--- /dev/null
+++ b/hm/ssh/default.nix
@@ -0,0 +1,17 @@
+{...}: {
+  services.ssh-agent.enable = false;
+
+  programs.ssh = {
+    enable = true;
+    matchBlocks = let
+      genBox = user: {
+        inherit user;
+        hostname = "${user}.your-storagebox.de";
+      };
+      username = "u384702";
+    in {
+      "storagebox" = genBox username;
+      "storagebox-1" = genBox "${username}-sub1";
+    };
+  };
+}