17 lines
301 B
Nix
17 lines
301 B
Nix
{ config, pkgs, nixvim, ... }:
|
|
{
|
|
imports = [
|
|
nixvim.homeManagerModules.nixvim
|
|
];
|
|
programs.nixvim = {
|
|
enable = true;
|
|
colorschemes.oxocarbon.enable = true;
|
|
plugins = {
|
|
lualine = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|