feat(Infini-WSL): add host for Windows Subsystem For Linux

This commit is contained in:
Infinidoge 2022-04-27 21:10:17 -04:00
parent 0b1a8cbe9a
commit 8bb0369c1c
5 changed files with 99 additions and 3 deletions

View file

@ -7,7 +7,7 @@ let
secrets = lib.mapAttrs' (n: v: lib.nameValuePair (lib.removeSuffix ".age" n) { file = toFile n; }) filtered;
in
{
options.modules.secrets.enable = lib.mkOpt lib.types.bool true;
options.modules.secrets.enable = lib.hlissner.mkOpt lib.types.bool true;
config.age.secrets = lib.mkIf config.modules.secrets.enable secrets;
}