mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-03-17 09:32:50 +00:00
nixos/qemu-flags: Take a 'pkgs' parameter
I'm gonna use it in the next commit.
This commit is contained in:
parent
3be9d4610f
commit
1ce1380497
|
@ -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 {
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# QEMU flags shared between various Nix expressions.
|
||||
{ pkgs }:
|
||||
|
||||
{
|
||||
|
||||
|
|
Loading…
Reference in a new issue