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 21, 2024
1 parent ac87622 commit 3522223
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
46 changes: 46 additions & 0 deletions modules/home-manager/kvantum.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
config,
lib,
pkgs,
...
}:
let
cfg = config.qt.style.catppuccin;
enable =
cfg.enable
&& config.qt.enable
&& lib.elem config.qt.style.name [
"kvantum"
"Kvantum"
];
flavourCapitalized = lib.ctp.mkUpper cfg.flavour;
accentCapitalized = lib.ctp.mkUpper cfg.accent;
theme = pkgs.catppuccin-kvantum.override {
accent = accentCapitalized;
variant = flavourCapitalized;
};
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/Catppuccin-${flavourCapitalized}-${accentCapitalized}".source = "${theme}/share/Kvantum/Catppuccin-${flavourCapitalized}-${accentCapitalized}";
"Kvantum/kvantum.kvconfig" = lib.mkIf cfg.apply {
text = ''
[General]
theme=Catppuccin-${flavourCapitalized}-${accentCapitalized}
'';
};
};
}
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 3522223

Please sign in to comment.