From 6e3a04691875479dbee307b602352b21923a9e6c Mon Sep 17 00:00:00 2001 From: Myned Date: Wed, 1 Jan 2025 11:46:58 -0600 Subject: [PATCH] dconf: guard with enable instead of default Signed-off-by: Myned --- options/custom/settings/dconf/default.nix | 4 ++-- options/custom/settings/default.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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;