blob: f51356143ea5ab7e963e786404c6e17ee9f7efb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ inputs, ... }:
{
imports = [
inputs.catppuccin.nixosModules.catppuccin
];
catppuccin = {
accent = "mauve";
flavor = "mocha";
# Don't use modules with IFD by default
tty.enable = false;
};
}
|