12 lines
193 B
Nix
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
|
|
};
|
|
}
|