34 lines
983 B
Nix
34 lines
983 B
Nix
{ config, lib, pkgs, namespace, osConfig ? {}, ... }:
|
|
let
|
|
inherit (lib) mkIf mkDefault;
|
|
inherit (lib.options) mkOption mkEnableOption;
|
|
inherit (lib.types) nullOr enum;
|
|
|
|
cfg = config.${namespace}.themes;
|
|
in {
|
|
options.${namespace}.themes = {
|
|
enable = mkEnableOption "Theming (Stylix)";
|
|
|
|
theme = mkOption {
|
|
type = nullOr (enum [ "everforest" "catppuccin-latte" "chalk" ]);
|
|
default = "everforest";
|
|
description = "The theme to set the system to";
|
|
example = "everforest";
|
|
};
|
|
|
|
polarity = mkOption {
|
|
type = nullOr (enum [ "dark" "light" ]);
|
|
default = "dark";
|
|
description = "determine if system is in dark or light mode";
|
|
};
|
|
};
|
|
|
|
config = mkIf (cfg.enable && osConfig.${namespace}.theming.enable) {
|
|
stylix = {
|
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/${cfg.theme}.yaml";
|
|
image = ./${cfg.theme}.jpg;
|
|
polarity = cfg.polarity;
|
|
targets.qt.platform = mkDefault "kde6";
|
|
};
|
|
};
|
|
}
|