1
1
Fork 0
nixos/options/custom/settings/dconf/default.nix

17 lines
296 B
Nix
Raw Normal View History

{
config,
lib,
...
}:
with lib; let
cfg = config.custom.settings.dconf;
in {
options.custom.settings.dconf.default = mkOption {default = false;};
config.custom.settings.dconf = mkIf cfg.default {
apps.enable = true;
gnome.enable = true;
gnome-shell.enable = true;
};
}