15 lines
302 B
Nix
15 lines
302 B
Nix
{ inputs, ... }:
|
|
{
|
|
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
|
|
};
|
|
|
|
}
|