Add dconf support

This commit is contained in:
2023-01-03 00:52:05 +00:00
parent 12da797ad4
commit dcf917fac7
2 changed files with 22 additions and 0 deletions

View File

@ -15,6 +15,8 @@ with lib.my;
services = mkOpt' attrs { } "Services managed directly from home-manager";
};
dconf.settings = mkOpt' attrs { } "dconf settings to enable";
env = mkOption {
type = attrsOf (oneOf [ str path (listOf (either str path)) ]);
apply = mapAttrs (n: v:
@ -58,6 +60,7 @@ with lib.my;
configFile = mkAliasDefinitions options.home.configFile;
dataFile = mkAliasDefinitions options.home.dataFile;
};
dconf.settings = mkAliasDefinitions options.dconf.settings;
};
};