Auto-commit: 2026-01-05 16:04:22

This commit is contained in:
2026-01-05 16:04:22 +00:00
parent 9dff259050
commit c621e40ae9

View File

@@ -1,31 +1,31 @@
{
pkgs,
...
}:
{ pkgs, config, lib, ... }:
let
variant = "mocha";
accent = "mauve";
cfg = config.my.desktop;
in
{
catppuccin = {
enable = true;
accent = "${accent}";
flavor = "${variant}";
vscode.profiles.default.enable = false;
cursors.enable = true;
};
config = lib.mkIf cfg.enable {
catppuccin = {
enable = true;
accent = "${accent}";
flavor = "${variant}";
vscode.profiles.default.enable = false;
cursors.enable = true;
};
gtk = {
enable = true;
theme = {
name = "Catppuccin-GTK-Dark";
package = pkgs.magnetic-catppuccin-gtk;
gtk = {
enable = true;
theme = {
name = "Catppuccin-GTK-Dark";
package = pkgs.magnetic-catppuccin-gtk;
};
};
qt = {
enable = true;
platformTheme.name = "ct";
style.name = "kvantum";
};
};
qt = {
enable = true;
platformTheme.name = "ct";
style.name = "kvantum";
};
}