Skip to content

Commit 53b9019

Browse files
SuperSandro2000astro
authored andcommitted
Remove aliases
1 parent f86e8ba commit 53b9019

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

lib/runners/qemu.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
}:
55

66
let
7-
inherit (pkgs) lib system;
7+
inherit (pkgs) lib;
8+
inherit (pkgs.stdenv) system;
89

910
enableLibusb = pkg: pkg.overrideAttrs (oa: {
1011
configureFlags = oa.configureFlags ++ [

nixos-modules/microvm/options.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -531,12 +531,12 @@ in
531531

532532
config = lib.mkMerge [ {
533533
microvm.qemu.machine =
534-
lib.mkIf (pkgs.system == "x86_64-linux") (
534+
lib.mkIf (pkgs.stdenv.system == "x86_64-linux") (
535535
lib.mkDefault "microvm"
536536
);
537537
} {
538538
microvm.qemu.machine =
539-
lib.mkIf (pkgs.system == "aarch64-linux") (
539+
lib.mkIf (pkgs.stdenv.system == "aarch64-linux") (
540540
lib.mkDefault "virt"
541541
);
542542
} ];

0 commit comments

Comments
 (0)