From ac9e58ede6d8306f046594126af23b0a35035531 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Sun, 6 Jul 2025 23:11:25 -0500 Subject: [PATCH] fixed pathss --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index af8dabf..f99973b 100644 --- a/flake.nix +++ b/flake.nix @@ -23,8 +23,8 @@ # These will get applied to both the configured user and the root user (if enabled) userOptions = config: { openssh.authorizedKeys = lib.mkIf config.ssh (lib.mkMerge [ - (lib.mkIf (config.profile == "personal") { keyFiles = [ ./personal ]; }) - (lib.mkIf (config.profile == "work") { keyFiles = [ ./work ]; }) + (lib.mkIf (config.profile == "personal") { keyFiles = [ ./keys/personal ]; }) + (lib.mkIf (config.profile == "work") { keyFiles = [ ./keys/work ]; }) ]); shell = lib.mkIf config.enableShell pkgs.zsh; };