options/style: switch icon theme to MoreWaita

This commit is contained in:
Anthony Rodriguez 2025-02-11 15:46:52 +01:00
parent 76ee718615
commit 8569d84f5b
Signed by: nezia
SSH key fingerprint: SHA256:Ihfpl0rUpqDevYqnzSR34OYfVLbDNkBiUjs3CpX4ykA

View file

@ -80,7 +80,7 @@ in {
name = mkOption { name = mkOption {
type = str; type = str;
description = "Name for the GTK theme"; description = "Name for the GTK theme";
default = "adw-gtk3"; default = "adw-gtk3-dark";
}; };
package = mkOption { package = mkOption {
type = package; type = package;
@ -94,13 +94,15 @@ in {
name = mkOption { name = mkOption {
type = str; type = str;
description = "The name for the icon theme that will be used for GTK programs"; description = "The name for the icon theme that will be used for GTK programs";
default = "kora"; default = "MoreWaita";
}; };
package = mkOption { package = mkOption {
type = package; type = package;
description = "The GTK icon theme to be used"; description = "The GTK icon theme to be used";
default = pkgs.kora-icon-theme; default = pkgs.morewaita-icon-theme.overrideAttrs {
src = inputs.morewaita;
};
}; };
}; };
}; };