Remove nvfetcher #158

Merged
tlater merged 6 commits from tlater/remove-nvfetcher into master 2025-09-29 06:32:44 +01:00
Showing only changes of commit 1cf721170b - Show all commits

View file

@ -37,7 +37,6 @@
}@inputs:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
vm = nixpkgs.lib.nixosSystem {
inherit system;
@ -100,7 +99,7 @@
packages.${system} = {
default = vm.config.system.build.vm;
}
// import ./pkgs { inherit pkgs; };
// import ./pkgs { pkgs = nixpkgs.legacyPackages.${system}; };
###################
# Utility scripts #
@ -111,7 +110,7 @@
run-vm = {
type = "app";
program =
(pkgs.writeShellScript "" ''
(nixpkgs.legacyPackages.${system}.writeShellScript "" ''
${vm.config.system.build.vm.outPath}/bin/run-testvm-vm
'').outPath;
};