nichts/modules/style/gtk.nix
2024-11-19 14:20:00 +01:00

12 lines
193 B
Nix

{
config,
lib,
...
}:
with lib; let
cfg = config.modules.usrEnv.style.gtk;
in {
config = mkIf cfg.enable {
programs.dconf.enable = true; # NOTE: we need this or gtk breaks
};
}