nix-config/modules/nixos/dconf.nix

15 lines
226 B
Nix
Raw Normal View History

{ config, lib, ... }:
with lib;
let
2025-07-09 08:00:00 +01:00
cfg = config.features.desktop.dconf;
in
{
2025-07-09 08:00:00 +01:00
options.features.desktop.dconf.enable = mkEnableOption "Enable dconf";
config = mkIf cfg.enable {
programs.dconf.enable = true;
};
}