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

22 lines
349 B
Nix

{
pkgs,
config,
builtins,
...
}:
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;
};
}