Files
LillyOS/home/catppuccin.nix
2026-01-05 04:04:42 +01:00

31 lines
466 B
Nix

{
pkgs,
...
}:
let
variant = "mocha";
accent = "mauve";
in
{
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;
};
};
qt = {
enable = true;
platformTheme.name = "ct";
style.name = "kvantum";
};
}