aboutsummaryrefslogtreecommitdiff
path: root/user/ssh.nix
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2026-01-10 17:59:55 -0500
committerRosa <rosaontheweb@proton.me>2026-01-10 17:59:55 -0500
commit5570be9c9c64e0ba2474d73c2b6b23508b916fd6 (patch)
tree53e2f7939b668a50d8f51f857a8659989de85c2b /user/ssh.nix
parent488bd4b5c08d6fe9c44b0fa5cd3750265c2be482 (diff)
custom function for system creation
Diffstat (limited to 'user/ssh.nix')
-rw-r--r--user/ssh.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/user/ssh.nix b/user/ssh.nix
deleted file mode 100644
index d077e31..0000000
--- a/user/ssh.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{ config, ... }:
-{
- programs.ssh = {
- enable = true;
- enableDefaultConfig = false;
- matchBlocks = {
- "*" = {
- identityFile = "~/.ssh/id_ed25519";
- };
- };
- };
-}