diff --git a/.git-crypt/.gitattributes b/.git-crypt/.gitattributes deleted file mode 100644 index 665b10e..0000000 --- a/.git-crypt/.gitattributes +++ /dev/null @@ -1,4 +0,0 @@ -# Do not edit this file. To specify the files to encrypt, create your own -# .gitattributes file in the directory where your files are. -* !filter !diff -*.gpg binary diff --git a/.git-crypt/keys/default/0/91FF02AD4EEBB9C7E08FF04D6BD29B53D3847632.gpg b/.git-crypt/keys/default/0/91FF02AD4EEBB9C7E08FF04D6BD29B53D3847632.gpg deleted file mode 100644 index 4a4cc59..0000000 Binary files a/.git-crypt/keys/default/0/91FF02AD4EEBB9C7E08FF04D6BD29B53D3847632.gpg and /dev/null differ diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index dca0b4c..0000000 --- a/.gitattributes +++ /dev/null @@ -1,3 +0,0 @@ -secrets/**/*.secret filter=git-crypt diff=git-crypt -secrets/matrix-email-config.nix filter=git-crypt diff=git-crypt -home/secrets/*.secret filter=git-crypt diff=git-crypt 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 = { - }; -}