31 lines
466 B
Nix
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";
|
|
};
|
|
} |