nix run .
Add to flake.nix:
{
inputs = {
...
nvfconfig = {
url = "github:mikeslade/nvfconfig";
inputs.nixpkgs.follows = "nixpkgs";
};
}
outputs = inputs @ {
nvfconfig,
...
}:{
...
}
}
Add to a host configuration.nix like so:
environment.systemPackages = with pkgs; [
inputs.nvfconfig.packages.${system}.default
];