gtk: change theme options

This commit is contained in:
Charlie Root 2024-08-15 23:26:43 +02:00
commit ce02a2b817
2 changed files with 49 additions and 39 deletions

View file

@ -1,56 +1,23 @@
{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.modules.theming.gtk;
inherit (config.modules.other.system) username;
inherit (config.modules.style.gtk) theme iconTheme;
in {
options.modules.theming.gtk = {
enable = mkEnableOption "gtk theming";
name = mkOption {
description = "gtk theme name";
type = types.str;
};
package = mkOption {
description = "gtk theme package";
type = types.package;
};
# iconTheme = mkOption {
# description = "gtk icon theme";
# type = with types; 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 = {
# package = pkgs.gruvbox-gtk-theme;
# name = "Gruvbox-Dark-BL";
# };
iconTheme = {
name = "Papirus-Dark";
package = pkgs.catppuccin-papirus-folders;
theme = {
inherit (theme) name package;
};
iconTheme = {
inherit (iconTheme) name Package;
};
};
home.sessionVariables = {
#GTK_THEME = "Gruvbox-Dark-BL";
# GTK_USE_PORTAL = "1";
};
};
};