First working version of NixOS intall
This commit is contained in:
commit
5ab67429b2
47 changed files with 1801 additions and 0 deletions
13
modules/nixos/neovim.nix
Normal file
13
modules/nixos/neovim.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ config, pkgs, ...}:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
neovim
|
||||
];
|
||||
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
viAlias = true;
|
||||
vimAlias = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue