Skip to content

Commit

Permalink
feat(home-manager): add support for kvantum
Browse files Browse the repository at this point in the history
  • Loading branch information
Lichthagel committed May 22, 2024
1 parent fea5242 commit fe5034a
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
47 changes: 47 additions & 0 deletions modules/home-manager/kvantum.nix
Original file line number Diff line number Diff line change
@@ -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}
'';
};
};
}
4 changes: 4 additions & 0 deletions test.nix
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,10 @@ testers.runNixOSTest {

gtk = lib.recursiveUpdate enable { catppuccin.cursor.enable = true; };

qt = enable // {
style.name = "kvantum";
};

services = {
dunst = enable;
mako = enable;
Expand Down

0 comments on commit fe5034a

Please sign in to comment.