mirror of
https://github.com/danth/stylix
synced 2024-11-14 00:17:10 +00:00
11 lines
321 B
Nix
11 lines
321 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
options.stylix.targets.gtk.enable =
|
|
config.lib.stylix.mkEnableTarget "all GTK3, GTK4 and Libadwaita apps" true;
|
|
|
|
config = lib.mkIf (config.stylix.enable && config.stylix.targets.gtk.enable) {
|
|
# Required for Home Manager's GTK settings to work
|
|
programs.dconf.enable = true;
|
|
};
|
|
}
|