nichts/modules/style/gtk.nix

13 lines
193 B
Nix
Raw Normal View History

2024-05-22 14:29:45 +02:00
{
config,
lib,
...
}:
with lib; let
2024-08-15 23:59:00 +02:00
cfg = config.modules.usrEnv.style.gtk;
2024-04-10 17:39:26 +02:00
in {
config = mkIf cfg.enable {
2024-08-28 14:18:32 +02:00
programs.dconf.enable = true; # NOTE: we need this or gtk breaks
};
2024-04-10 17:39:26 +02:00
}