mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
a958a4aa00
This parameter is for packages to use in VMs, unlike hostPkgs.
11 lines
251 B
Nix
11 lines
251 B
Nix
{ config, lib, hostPkgs, ... }:
|
|
{
|
|
config = {
|
|
# default pkgs for use in VMs
|
|
_module.args.pkgs = hostPkgs;
|
|
|
|
defaults = {
|
|
# TODO: a module to set a shared pkgs, if options.nixpkgs.* is untouched by user (highestPrio) */
|
|
};
|
|
};
|
|
}
|