14 lines
148 B
Nix
Executable File
14 lines
148 B
Nix
Executable File
# neovim.nix
|
|
{
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
home.packages = [
|
|
inputs.neovim-nightly-overlay.packages.${pkgs.system}.default
|
|
];
|
|
}
|