feat(home-manager): add support for kvantum (#175)

This commit is contained in:
Jens Gatzweiler 2024-05-28 08:41:06 +02:00 committed by GitHub
parent fea5242c0e
commit f32e5ab2b5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 51 additions and 0 deletions

View file

@ -0,0 +1,47 @@
{
config,
lib,
pkgs,
...
}:
let
cfg = config.qt.style.catppuccin;
enable =
cfg.enable
&& config.qt.enable
&& lib.elem config.qt.style.name [
"kvantum"
"Kvantum"
];
flavorCapitalized = lib.ctp.mkUpper cfg.flavor;
accentCapitalized = lib.ctp.mkUpper cfg.accent;
theme = pkgs.catppuccin-kvantum.override {
accent = accentCapitalized;
variant = flavorCapitalized;
};
themeName = "Catppuccin-${flavorCapitalized}-${accentCapitalized}";
in
{
options.qt.style.catppuccin = lib.ctp.mkCatppuccinOpt "Kvantum" // {
accent = lib.ctp.mkAccentOpt "Kvantum";
apply = lib.mkOption {
type = lib.types.bool;
default = true;
description = ''
Applies the theme by overwriting `$XDG_CONFIG_HOME/Kvantum/kvantum.kvconfig`.
If this is disabled, you must manually set the theme (e.g. by using `kvantummanager`).
'';
};
};
config.xdg.configFile = lib.mkIf enable {
"Kvantum/${themeName}".source = "${theme}/share/Kvantum/${themeName}";
"Kvantum/kvantum.kvconfig" = lib.mkIf cfg.apply {
text = ''
[General]
theme=${themeName}
'';
};
};
}

View file

@ -121,6 +121,10 @@ testers.runNixOSTest {
gtk = lib.recursiveUpdate enable { catppuccin.cursor.enable = true; };
qt = enable // {
style.name = "kvantum";
};
services = {
dunst = enable;
mako = enable;