2024-09-09 00:22:14 +00:00
|
|
|
{
|
2024-09-13 01:50:53 +00:00
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib; let
|
|
|
|
cfg = config.custom.settings.dconf;
|
|
|
|
in {
|
|
|
|
options.custom.settings.dconf.default = mkOption {default = false;};
|
2024-09-09 00:22:14 +00:00
|
|
|
|
|
|
|
config.custom.settings.dconf = mkIf cfg.default {
|
|
|
|
apps.enable = true;
|
|
|
|
gnome.enable = true;
|
|
|
|
gnome-shell.enable = true;
|
|
|
|
};
|
|
|
|
}
|