17 lines
195 B
Nix
17 lines
195 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
catppuccin = {
|
|
enable = true;
|
|
flavor = "mocha";
|
|
};
|
|
console.catppuccin = {
|
|
enable = true;
|
|
flavor = "mocha";
|
|
};
|
|
}
|