niksos/modules/gui/gtk.nix

79 lines
2.4 KiB
Nix

{
config,
lib,
...
}: let
cfg = config.myOptions.themes.gtk;
inherit (config.myOptions.other.system) username;
hmCfg = config.home-manager.users.${username};
inherit (lib.modules) mkIf;
inherit (lib.options) mkEnableOption mkOption;
inherit (lib.types) package str submodule;
in {
options.myOptions.themes.gtk = {
enable = mkEnableOption "gtk theming";
name = mkOption {
description = "gtk theme name";
type = str;
};
variant = mkOption {
description = "gtk theme variant";
type = str;
};
accentColour = mkOption {
description = "accent colour for gtk theme";
type = str;
};
package = mkOption {
description = "gtk theme package";
type = package;
};
iconTheme = mkOption {
description = "gtk icon theme";
type = submodule {
options = {
name = mkOption {
description = "gtk icon theme name";
type = str;
};
package = mkOption {
description = "gtk icon theme package";
type = package;
};
};
};
};
};
config = mkIf cfg.enable {
home-manager.users.${username} = {
gtk = {
enable = true;
theme = {
inherit (cfg) name;
package = cfg.package.override {
size = "standard";
accents = [ cfg.accentColour ];
inherit (cfg) variant;
tweaks = [ "normal" ];
};
};
iconTheme = {
inherit (cfg.iconTheme) name;
package = cfg.iconTheme.package.override {
accent = cfg.accentColour;
flavor = cfg.variant;
};
};
gtk2 = {
configLocation = "${hmCfg.xdg.configHome}/gtk-2.0/gtkrc";
};
};
home.sessionVariables = {
GTK_THEME = cfg.name;
GTK_USE_PORTAL = "1";
};
};
};
}