diff --git a/nixos/modules/users/nvim.nix b/nixos/modules/users/nvim.nix new file mode 100644 index 0000000..c08146c --- /dev/null +++ b/nixos/modules/users/nvim.nix @@ -0,0 +1,19 @@ +{ + pkgs, + ... +}: +let + nvf = import (builtins.fetchTarball { + url = "https://github.com/notashelf/nvf/archive/v0.7.tar.gz"; + # Optionally, you can add 'sha256' for verification and caching + # sha256 = ""; + }); +in{ + imports = [ + nvf.nixosModules.nvf + ]; + + programs.nvf = { + enable = true; + }; +}