ooknet/system/modules/programs/dconf/default.nix
2024-04-29 18:53:14 +12:00

14 lines
279 B
Nix

{ lib, config, ... }:
let
inherit (lib) mkIf mkEnableOption;
cfg = config.systemModules.programs.dconf;
in
{
options.systemModules.programs.dconf.enable = mkEnableOption "Enable dconf system module";
config = mkIf cfg.enable {
programs.dconf.enable = true;
};
}