From db8623e257406c62f1bf5482cd9dc250ff48a808 Mon Sep 17 00:00:00 2001 From: faukah Date: Fri, 30 Jan 2026 20:37:11 +0100 Subject: [PATCH] flake.nix: drop desc argument for runVM function The current runVM function gets called only with a module and without a desc, resulting in an error when running `nix flake show` or similar commands. This commit drops the `desc` argument to `runVM` and gets rid of that problem. --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index c96004a09..945dcd946 100644 --- a/flake.nix +++ b/flake.nix @@ -101,7 +101,7 @@ formatter = forAllPlatforms (pkgs: pkgs.alejandra); apps = forBuildablePlatforms (pkgs: let - runVM = module: desc: let + runVM = module: let vm = import ./nix/vm/create.nix { inherit (pkgs.stdenv.hostPlatform) system; inherit module nixpkgs;