12 lines
272 B
Nix
Executable file
12 lines
272 B
Nix
Executable file
{ pkgs, ... }: {
|
|
# List packages installed in system profile. To search, run:
|
|
# $ nix search wget
|
|
environment.systemPackages = with pkgs; [ neovim ];
|
|
|
|
programs.neovim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
viAlias = true;
|
|
vimAlias = true;
|
|
};
|
|
}
|