fix(home): Move non-options to config

This commit is contained in:
punkfairie 2024-11-16 23:53:24 -08:00
parent 02b37ea980
commit 0b22f3b9ef
Signed by: punkfairie
GPG key ID: A509E8F77FB9D696

View file

@ -83,7 +83,7 @@ let
in
{
options.marleyos.theme = {
colors = rec {
colors = {
default = mkOption {
type = with types; str;
default = "dark";
@ -93,12 +93,19 @@ in
light = mkColorThemeOpt "light" "dawn";
dark = mkColorThemeOpt "dark" "main";
inherit (cfg.colors."${cfg.colors.default}") base;
inherit (cfg.colors."${cfg.colors.default}") flavor;
inherit (cfg.colors."${cfg.colors.default}") accent;
base = mkOption {
type = colorThemes;
};
flavor = mkOption {
type = with types; nullOr str;
};
accent = mkOption {
type = with types; nullOr str;
};
# HACK: Need to come up with a better solution
isRosePine = base == "rose-pine";
isRosePine = mkOption {
type = with types; bool;
};
};
icons = mkOption {
@ -115,6 +122,18 @@ in
};
config = mkMerge [
# colors
{
marleyos.theme.colors = rec {
inherit (cfg.colors."${cfg.colors.default}") base;
inherit (cfg.colors."${cfg.colors.default}") flavor;
inherit (cfg.colors."${cfg.colors.default}") accent;
# HACK: Need to come up with a better solution
isRosePine = base == "rose-pine";
};
}
# icons
(mkIf (cfg.icons != null) {
gtk = mkIf config.gtk.enable (mkDefault {