fqbn207 3238b146d9 kekl
2025-01-08 04:52:20 +01:00

21 lines
242 B
Nix

{
config,
pkgs,
nixvim,
...
}:
{
programs.nixvim = {
plugins = {
lualine = {
enable = false;
settings = {
options = {
theme = "horizon";
};
};
};
};
};
}