diff options
author | Soispha <soispha@vhack.eu> | 2023-07-29 21:58:49 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-07-30 00:19:30 +0200 |
commit | 3f5e7b952916a9198afa6bcb85f9ad15187b0a80 (patch) | |
tree | 8029c515b900eb8453a629cc9424778f0cd03859 /system/options | |
parent | Style(treewide): Remove some unused imports (diff) | |
download | nixos-config-3f5e7b952916a9198afa6bcb85f9ad15187b0a80.zip |
Feat(treewide): Add enable options for secrets and impermanence
Diffstat (limited to 'system/options')
-rw-r--r-- | system/options/default.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/system/options/default.nix b/system/options/default.nix index 13861199..72ebc4fb 100644 --- a/system/options/default.nix +++ b/system/options/default.nix @@ -14,5 +14,13 @@ in { description = lib.mdDoc "Which backlight to query for the screen brightness"; }; }; + secrets = { + #enable = lib.mkEnableOption "Secrets through agenix"; + enable = lib.mkOption { + type = lib.types.bool; + default = true; + description = lib.mdDoc "Enable secrets through agenix"; + }; + }; }; } |