7 lines
178 B
Nix
Executable File
7 lines
178 B
Nix
Executable File
{ env, config, pkgs, host, self, ... }: {
|
|
programs.nixvim = {
|
|
nixpkgs.useGlobalPackages = true;
|
|
};
|
|
imports = [ ./plugins ./options.nix ./keymaps.nix ./autocmd.nix ];
|
|
}
|