From af26facae457a01c562b93483104063f6990d1da Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Thu, 18 Jan 2024 17:58:26 +0100 Subject: [PATCH] Use the toplevel from the vm output --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 72cad64..a8ca26f 100644 --- a/flake.nix +++ b/flake.nix @@ -47,7 +47,8 @@ let nixosconf = self.nixosConfigurations.cross; syspkgs = nixosconf.pkgs; - toplevel = nixosconf.config.system.build.toplevel; + #toplevel = nixosconf.config.system.build.toplevel; + toplevel = "${nixosconf.config.system.build.vm}/system"; in pkgs.mkShell { pname = "qemu-shell";