From 67bb318c1338e61a7e0ae562bd124aea4972f1cd Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Mon, 22 Apr 2024 21:04:22 +0200 Subject: [PATCH] Move age.identityPaths to desktop profile The management server doesn't like when it is in common --- modules/misc/common/default.nix | 1 - modules/profiles/desktop/default.nix | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/misc/common/default.nix b/modules/misc/common/default.nix index 0619cec..d37eae4 100644 --- a/modules/misc/common/default.nix +++ b/modules/misc/common/default.nix @@ -10,7 +10,6 @@ let system = pkgs.system; in { - age.identityPaths = [ "/home/${config.az-username}/.ssh/id_rsa" ]; # The rough location location = { latitude = 46.948; diff --git a/modules/profiles/desktop/default.nix b/modules/profiles/desktop/default.nix index ee3ca58..5d1e604 100644 --- a/modules/profiles/desktop/default.nix +++ b/modules/profiles/desktop/default.nix @@ -22,6 +22,7 @@ in nixos.includeAllModules = true; }; + age.identityPaths = [ "/home/${config.az-username}/.ssh/id_rsa" ]; services = { az-docker.enable = true; az-pipewire.enable = true;