12 lines
209 B
Nix
12 lines
209 B
Nix
{ inputs, ... }: {
|
|
imports = [
|
|
inputs.catppuccin.homeManagerModules.catppuccin
|
|
];
|
|
|
|
catppuccin = {
|
|
accent = "maroon";
|
|
flavor = "mocha";
|
|
kitty.enable = true;
|
|
nvim.enable = true;
|
|
};
|
|
}
|