blob: c0a1d5eca2af4657c9428dced4119d22421e80c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
config,
lib,
inputs,
...
}:
let
cfg = config.seth.tweaks.catppuccin;
in
{
options.seth.tweaks.catppuccin = {
enable = lib.mkEnableOption "catppuccin themeing" // {
default = config.seth.enable;
defaultText = "config.seth.enable";
};
};
imports = [
inputs.catppuccin.homeManagerModules.catppuccin
];
config = lib.mkIf cfg.enable {
catppuccin = {
enable = true;
accent = "mauve";
flavor = "mocha";
};
};
}
|