1{ inputs, ... }: 2{ 3 perSystem = 4 { pkgs, ... }: 5 { 6 packages.vm = pkgs.writeShellApplication { 7 name = "vm"; 8 text = '' 9 ${inputs.self.nixosConfigurations.nargun-vm.config.system.build.vm}/bin/run-nargun-vm-vm "$@" 10 ''; 11 }; 12 }; 13}