secrets: remove old module

This commit is contained in:
Antoine Martin 2022-03-11 18:59:48 +01:00
parent 2c3032c642
commit 617a8e7459
3 changed files with 0 additions and 20 deletions

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