2025-04-23 14:19:05 +01:00
|
|
|
{ config, lib, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
2025-04-30 03:09:17 +01:00
|
|
|
cfg = config.features.desktop.dconf;
|
2025-04-23 14:19:05 +01:00
|
|
|
in
|
|
|
|
{
|
2025-04-30 03:09:17 +01:00
|
|
|
options.features.desktop.dconf.enable = mkEnableOption "Enable dconf";
|
2025-04-23 14:19:05 +01:00
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
programs.dconf.enable = true;
|
|
|
|
};
|
|
|
|
}
|