{ 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 = ""; }); in{ imports = [ nvf.nixosModules.nvf ]; programs.nvf = { enable = true; }; }