ooknet/nixos/modules/programs/dconf.nix
2024-06-11 22:37:17 +12:00

12 lines
163 B
Nix

{ lib, config, ... }:
let
inherit (lib) mkIf;
cfg = config.ooknet.programs.dconf;
in
{
config = mkIf cfg.enable {
programs.dconf.enable = true;
};
}