Compare commits

...

2 commits

Author SHA1 Message Date
Antoine Martin 73229df4e4 get rid of git-crypt 2022-03-11 19:02:19 +01:00
Antoine Martin 617a8e7459 secrets: remove old module 2022-03-11 18:59:48 +01:00
6 changed files with 0 additions and 27 deletions

View file

@ -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

3
.gitattributes vendored
View file

@ -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

View file

@ -10,9 +10,6 @@
# Service definitions
./services
# Configuration secrets
./secrets
# Host-specific config
./hosts/boreal
];

View file

@ -11,9 +11,6 @@
# Service definitions
./services
# Configuration secrets
./secrets
# Host-specific config
./hosts/poseidon
];

View file

@ -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 = {
};
}