From d81e168cd9f721fe4d8043d7816e280d1c7dd652 Mon Sep 17 00:00:00 2001 From: Hektor Misplon Date: Sun, 16 Nov 2025 15:42:03 +0100 Subject: [PATCH] Fix vm error --- hosts/vm/configuration.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hosts/vm/configuration.nix b/hosts/vm/configuration.nix index c421e0b..c9f241d 100644 --- a/hosts/vm/configuration.nix +++ b/hosts/vm/configuration.nix @@ -47,7 +47,11 @@ home-manager = { useGlobalPkgs = true; useUserPackages = true; - users.h = ../../home/hosts/vm; + users.h = import ../../home/hosts/vm { + inherit inputs; + inherit config; + inherit pkgs; + }; }; services.qemuGuest.enable = true;