nixos/qemu-flags: Take a 'pkgs' parameter

I'm gonna use it in the next commit.

+2 -1
+1 -1
nixos/lib/build-vms.nix
··· 3 3 let pkgs = import ../.. { inherit system config; }; in 4 4 5 5 with pkgs.lib; 6 - with import ../lib/qemu-flags.nix; 6 + with import ../lib/qemu-flags.nix { inherit pkgs; }; 7 7 8 8 rec { 9 9
+1
nixos/lib/qemu-flags.nix
··· 1 1 # QEMU flags shared between various Nix expressions. 2 + { pkgs }: 2 3 3 4 { 4 5