19 lines
241 B
Nix
19 lines
241 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
catppuccin,
|
|
...
|
|
}:
|
|
with lib;
|
|
{
|
|
imports = [
|
|
catppuccin.nixosModules.catppuccin
|
|
];
|
|
}
|
|
// mkIf (elem "catppuccin" config.machine.services) {
|
|
catppuccin = {
|
|
enable = true;
|
|
flavor = "mocha";
|
|
};
|
|
}
|