diff --git a/options/custom/settings/dconf/default.nix b/options/custom/settings/dconf/default.nix index b985356..230a1d4 100644 --- a/options/custom/settings/dconf/default.nix +++ b/options/custom/settings/dconf/default.nix @@ -6,9 +6,9 @@ with lib; let cfg = config.custom.settings.dconf; in { - options.custom.settings.dconf.default = mkOption {default = false;}; + options.custom.settings.dconf.enable = mkOption {default = false;}; - config.custom.settings.dconf = mkIf cfg.default { + config.custom.settings.dconf = mkIf cfg.enable { apps.enable = true; gnome.enable = true; gnome-shell.enable = true; diff --git a/options/custom/settings/default.nix b/options/custom/settings/default.nix index c4f7c66..4d41c38 100644 --- a/options/custom/settings/default.nix +++ b/options/custom/settings/default.nix @@ -16,7 +16,7 @@ with lib; { }) (mkIf config.custom.minimal { - dconf.default = true; + dconf.enable = true; fonts.enable = true; gtk.enable = true; qt.enable = true;