mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 00:09:46 +01:00
26 lines
320 B
Nix
26 lines
320 B
Nix
{inputs, pkgs, ...}:
|
|
|
|
{
|
|
imports = [
|
|
inputs.nixvim.homeModules.nixvim
|
|
];
|
|
|
|
programs = {
|
|
nixvim = {
|
|
enable = true;
|
|
|
|
colorschemes = {
|
|
catppuccin = {
|
|
enable = true;
|
|
};
|
|
};
|
|
plugins = {
|
|
lualine = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}; # End of NixVIM
|
|
};
|
|
|
|
}
|