From d13259b4e6ced92888fdfd4b62eea57357d73d21 Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Wed, 11 Sep 2024 20:23:30 -0400 Subject: [PATCH] fix: ssh: local config symlink location --- modules/ssh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ssh.nix b/modules/ssh.nix index 83b9ba3..c412346 100644 --- a/modules/ssh.nix +++ b/modules/ssh.nix @@ -23,5 +23,5 @@ }; }; - home.file."~/.ssh/config.local".source = "${dotfiles}/ssh/config"; + home.file.".ssh/config.local".source = "${dotfiles}/ssh/config"; }