Files
NixVM/nixos/modules/users/nvim.nix

21 lines
337 B
Nix
Raw Normal View History

2025-11-19 21:44:28 +01:00
{
pkgs,
2025-11-20 17:16:04 +01:00
config,
2025-11-19 21:44:28 +01:00
...
}:
let
nvf = import (builtins.fetchTarball {
2025-11-20 17:16:04 +01:00
url = "https://github.com/notashelf/nvf/archive/v0.8.tar.gz";
2025-11-19 21:44:28 +01:00
# Optionally, you can add 'sha256' for verification and caching
# sha256 = "<sha256>";
});
in{
imports = [
nvf.nixosModules.nvf
];
2025-11-20 17:16:04 +01:00
2025-11-19 21:44:28 +01:00
programs.nvf = {
enable = true;
};
}