nix-config/modules/nixos/desktop/dconf.nix
Oliver Davies 54b43e4203
All checks were successful
/ check (push) Successful in 1m21s
Remove features
2025-05-03 16:50:27 +01:00

14 lines
208 B
Nix

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