From e97aa89d4ae30eba343ac8017822f3e996b3c90c Mon Sep 17 00:00:00 2001 From: ene Date: Sun, 19 Feb 2023 14:10:32 +0100 Subject: Fix: Add a way to use secrets --- hosts/desktop/configuration.nix | 2 ++ hosts/spawn/configuration.nix | 1 + secrets/default.nix | 5 +++++ 3 files changed, 8 insertions(+) create mode 100644 secrets/default.nix 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; + }; +} -- cgit 1.4.1