41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
|
# heavily borrowed from https://github.com/Lunarnovaa/nixconf/blob/f88254f1938211853f6005426fe19ba4b889e854/modules/desktop/theming/gtk.nix
|
||
|
{
|
||
|
lib,
|
||
|
config,
|
||
|
lib',
|
||
|
...
|
||
|
}: let
|
||
|
inherit (lib'.generators.gtk) finalGtk2Text toGtk3Ini;
|
||
|
inherit (config.local.systemVars) username;
|
||
|
|
||
|
styleCfg = config.local.style;
|
||
|
|
||
|
gtkSettings = with styleCfg; {
|
||
|
gtk-icon-theme-name = gtk.iconTheme.name;
|
||
|
gtk-theme-name = gtk.theme.name;
|
||
|
gtk-cursor-theme-name = cursorTheme.name;
|
||
|
gtk-application-prefer-dark-theme = scheme.variant == "dark";
|
||
|
};
|
||
|
in {
|
||
|
config = with styleCfg;
|
||
|
lib.mkIf styleCfg.enable {
|
||
|
hjem.users.${username} = {
|
||
|
files = {
|
||
|
".gtkrc-2.0".text = finalGtk2Text {attrs = gtkSettings;};
|
||
|
".config/gtk-3.0/settings.ini".text = toGtk3Ini {
|
||
|
Settings = gtkSettings;
|
||
|
};
|
||
|
".config/gtk-4.0/settings.ini".text = toGtk3Ini {
|
||
|
Settings = gtkSettings;
|
||
|
};
|
||
|
".config/gtk-4.0/gtk.css".source = with styleCfg; "${gtk.theme.package}/share/themes/${gtk.theme.name}/gtk-4.0/gtk-dark.css";
|
||
|
};
|
||
|
packages = with styleCfg; [
|
||
|
cursorTheme.package
|
||
|
gtk.theme.package
|
||
|
gtk.iconTheme.package
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|