blob: 439dfb466ba1edd655836bb4e264aa0aab112cdd (
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.tweaks.catppuccin;
in
{
options.tweaks.catppuccin = {
enable = lib.mkEnableOption "Catppuccin themeing";
};
imports = [
inputs.catppuccin.nixosModules.catppuccin
];
config = lib.mkIf cfg.enable {
catppuccin = {
enable = true;
accent = "mauve";
flavor = "mocha";
# Don't use modules with IFD by default
tty.enable = false;
};
};
}
|