From 339b39efcd9d650799f1ccfa3d132f1d9f33e6b3 Mon Sep 17 00:00:00 2001 From: stupidcomputer Date: Sat, 26 Oct 2024 10:54:25 -0500 Subject: [PATCH] move ssh configuration to the right place --- {home => .config}/ssh/config | 0 home/ssh/default.nix | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename {home => .config}/ssh/config (100%) diff --git a/home/ssh/config b/.config/ssh/config similarity index 100% rename from home/ssh/config rename to .config/ssh/config diff --git a/home/ssh/default.nix b/home/ssh/default.nix index a0c1316..9031bae 100644 --- a/home/ssh/default.nix +++ b/home/ssh/default.nix @@ -5,7 +5,7 @@ home.file = { ".ssh/config" = { - source = ./config; + source = ../../.config/ssh/config; }; }; }