diff --git a/boreal.nix b/boreal.nix index 63b89d5..448fcfb 100644 --- a/boreal.nix +++ b/boreal.nix @@ -10,9 +10,6 @@ # Service definitions ./services - # Configuration secrets - ./secrets - # Host-specific config ./hosts/boreal ]; diff --git a/poseidon.nix b/poseidon.nix index 6e02ba3..2739352 100644 --- a/poseidon.nix +++ b/poseidon.nix @@ -11,9 +11,6 @@ # Service definitions ./services - # Configuration secrets - ./secrets - # Host-specific config ./hosts/poseidon ]; diff --git a/secrets/default.nix b/secrets/default.nix deleted file mode 100644 index 5b4ab4a..0000000 --- a/secrets/default.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ pkgs, lib, config, ... }: -let - inherit (lib) - fileContents - mkOption - ; -in { - options.my.secrets = let inherit (lib) types; in mkOption { - type = types.attrs; - }; - - config.my.secrets = { - }; -}