Link: https://github.com/nix-community/stylix/pull/1596 Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
10 lines
216 B
Nix
10 lines
216 B
Nix
{ mkTarget, ... }:
|
|
mkTarget {
|
|
name = "gtk";
|
|
humanName = "all GTK3, GTK4 and Libadwaita apps";
|
|
|
|
configElements = {
|
|
# Required for Home Manager's GTK settings to work
|
|
programs.dconf.enable = true;
|
|
};
|
|
}
|