From 617a8e7459bd3c3cd9b4cf19080076139b8a8a2b Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Fri, 11 Mar 2022 18:59:48 +0100 Subject: [PATCH] secrets: remove old module --- boreal.nix | 3 --- poseidon.nix | 3 --- secrets/default.nix | 14 -------------- 3 files changed, 20 deletions(-) delete mode 100644 secrets/default.nix 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 = { - }; -}