nix-config/modules/nixos/dconf.nix
2025-07-17 21:47:19 +01:00

14 lines
226 B
Nix

{ config, lib, ... }:
with lib;
let
cfg = config.features.desktop.dconf;
in
{
options.features.desktop.dconf.enable = mkEnableOption "Enable dconf";
config = mkIf cfg.enable {
programs.dconf.enable = true;
};
}