diff options
Diffstat (limited to 'user/ssh.nix')
| -rw-r--r-- | user/ssh.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/user/ssh.nix b/user/ssh.nix new file mode 100644 index 0000000..d077e31 --- /dev/null +++ b/user/ssh.nix @@ -0,0 +1,12 @@ +{ config, ... }: +{ + programs.ssh = { + enable = true; + enableDefaultConfig = false; + matchBlocks = { + "*" = { + identityFile = "~/.ssh/id_ed25519"; + }; + }; + }; +} |
