31 lines
582 B
Nix
31 lines
582 B
Nix
{ inputs, pkgs, ... }:
|
|
{
|
|
imports = [ inputs.catppuccin.homeModules.catppuccin ];
|
|
|
|
catppuccin = {
|
|
accent = "mauve";
|
|
flavor = "mocha";
|
|
enable = true;
|
|
|
|
bat.enable = true; # <- installs Catppuccin-Mocha.tmTheme
|
|
delta.enable = true; # <- colours delta with your mauve accent
|
|
};
|
|
|
|
gtk = {
|
|
enable = true;
|
|
catppuccin = {
|
|
enable = true;
|
|
cursor = {
|
|
enable = true;
|
|
flavor = "mocha";
|
|
accent = "mauve";
|
|
};
|
|
};
|
|
cursorTheme = {
|
|
size = 38;
|
|
name = "catppuccin-mocha-mauve-cursors";
|
|
};
|
|
};
|
|
|
|
}
|