neovim: move from hosts/ to pkgs/

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2024-05-28 05:14:11 +05:30
parent c1c4714fa2
commit f748daba0f
11 changed files with 75 additions and 58 deletions

7
hosts/nvim.nix Normal file
View File

@@ -0,0 +1,7 @@
{ inputs, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
(nattovim.override { nvimPackage = inputs.nvim-overlay.packages.${pkgs.system}.neovim; })
];
}