We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75b5964 commit 92b808cCopy full SHA for 92b808c
nixos-modules/host/options.nix
@@ -53,7 +53,11 @@
53
] ++ (map (x: x.value) defs);
54
prefix = [ "microvm" "vms" name "config" ];
55
inherit (config) specialArgs pkgs;
56
- system = if config.pkgs != null then config.pkgs.system else pkgs.system;
+ system =
57
+ if config.pkgs != null then
58
+ config.pkgs.stdenv.hostPlatform.system
59
+ else
60
+ pkgs.stdenv.hostPlatform.system;
61
});
62
63
};
0 commit comments