diff options
-rw-r--r-- | hosts/desktop/configuration.nix | 2 | ||||
-rw-r--r-- | hosts/spawn/configuration.nix | 1 | ||||
-rw-r--r-- | secrets/default.nix | 5 |
3 files changed, 8 insertions, 0 deletions
diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix index 8e78949b..7f68621c 100644 --- a/hosts/desktop/configuration.nix +++ b/hosts/desktop/configuration.nix @@ -10,6 +10,8 @@ ./hardware ./networking.nix + ../../secrets + ../../system ../../services diff --git a/hosts/spawn/configuration.nix b/hosts/spawn/configuration.nix index b30609d8..88e38d35 100644 --- a/hosts/spawn/configuration.nix +++ b/hosts/spawn/configuration.nix @@ -6,6 +6,7 @@ ../../system + #../../services ]; diff --git a/secrets/default.nix b/secrets/default.nix new file mode 100644 index 00000000..661f51f5 --- /dev/null +++ b/secrets/default.nix @@ -0,0 +1,5 @@ +{config, ...}: { + age.secrets.nheko = { + file = ./nheko; + }; +} |