feat(home): iconTheme module

This commit is contained in:
punkfairie 2024-11-15 18:13:45 -08:00
parent 35c4b54705
commit f60f0e1d29
Signed by: punkfairie
GPG key ID: A509E8F77FB9D696

View file

@ -1,24 +1,28 @@
{ lib, config, ... }: { lib, config, ... }:
with lib;
let let
inherit (lib)
types
mkOption
mkIf
mkDefault
;
# https://github.com/nix-community/home-manager/blob/master/modules/misc/gtk.nix # https://github.com/nix-community/home-manager/blob/master/modules/misc/gtk.nix
iconThemeType = types.submodule { iconThemeType = types.submodule {
options = { options = {
package = mkOption { package = mkOption {
type = types.nullOr types.package; type = with types; nullOr package;
default = null; default = null;
example = literalExpression "pkgs.gnome.adwaita-icon-theme"; example = "pkgs.gnome.adwaita-icon-theme";
description = '' description = ''
Package providing the icon theme. This package will be installed Package providing the icon theme. This package will be installed to
to your profile. If `null` then the theme your profile. If `null` then the theme is assumed to already be
is assumed to already be available in your profile. available in your profile.
''; '';
}; };
name = mkOption { name = mkOption {
type = types.str; type = with types; str;
example = "Adwaita"; example = "Adwaita";
description = "The name of the icon theme within the package."; description = "The name of the icon theme within the package.";
}; };
@ -29,11 +33,9 @@ in
options = { options = {
home = { home = {
iconTheme = mkOption { iconTheme = mkOption {
type = types.nullOr iconThemeType; type = with types; nullOr iconThemeType;
default = null; default = null;
description = '' description = "The icon theme to use.";
The icon theme to use.
'';
}; };
}; };
}; };
@ -42,18 +44,18 @@ in
let let
cfg = config.home.iconTheme; cfg = config.home.iconTheme;
in in
{ mkIf (cfg != "null") {
gtk = mkIf config.gtk.enable (mkDefault { gtk = mkIf config.gtk.enable (mkDefault {
iconTheme = { iconTheme = {
name = cfg.name; inherit (cfg) name;
package = cfg.package; package = mkIf (cfg.package != "null") cfg.package;
}; };
}); });
services.dunst = mkIf config.services.dunst.enable (mkDefault { services.dunst = mkIf config.services.dunst.enable (mkDefault {
iconTheme = { iconTheme = {
name = cfg.name; inherit (cfg) name;
package = cfg.package; package = mkIf (cfg.package != "null") cfg.package;
}; };
}); });
}; };