mirror of
https://github.com/blahai/nyx.git
synced 2025-01-18 19:10:21 +00:00
10 lines
151 B
Nix
10 lines
151 B
Nix
|
{ inputs, ... }:
|
||
|
{
|
||
|
imports = [ inputs.catppuccin.nixosModules.catppuccin ];
|
||
|
|
||
|
config.catppuccin = {
|
||
|
enable = true;
|
||
|
flavor = "mocha";
|
||
|
};
|
||
|
}
|