mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-07 22:20:33 +02:00
11 lines
160 B
Nix
11 lines
160 B
Nix
{ self, ... }:
|
|
{
|
|
programs.nixvim = {
|
|
enable = true;
|
|
|
|
colorschemes.catppuccin = {
|
|
enable = true;
|
|
settings.flavour = "latte";
|
|
};
|
|
};
|
|
}
|