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

I'm gonna use it in the next commit.
This commit is contained in:
Tuomas Tynkkynen 2018-01-30 11:22:41 +02:00
parent 3be9d4610f
commit 1ce1380497
2 changed files with 2 additions and 1 deletions

View file

@ -3,7 +3,7 @@
let pkgs = import ../.. { inherit system config; }; in
with pkgs.lib;
with import ../lib/qemu-flags.nix;
with import ../lib/qemu-flags.nix { inherit pkgs; };
rec {

View file

@ -1,4 +1,5 @@
# QEMU flags shared between various Nix expressions.
{ pkgs }:
{