Files
NixVM/nixos/modules/users/nvim.nix
2025-11-20 17:16:04 +01:00

21 lines
337 B
Nix

{
pkgs,
config,
...
}:
let
nvf = import (builtins.fetchTarball {
url = "https://github.com/notashelf/nvf/archive/v0.8.tar.gz";
# Optionally, you can add 'sha256' for verification and caching
# sha256 = "<sha256>";
});
in{
imports = [
nvf.nixosModules.nvf
];
programs.nvf = {
enable = true;
};
}