nix/modules/home/common/neovim.nix
cartierf89 b5dfc7998d nix os
2025-08-19 11:52:43 -04:00

14 lines
148 B
Nix
Executable File

# neovim.nix
{
config,
pkgs,
inputs,
...
}:
{
home.packages = [
inputs.neovim-nightly-overlay.packages.${pkgs.system}.default
];
}