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