summary refs log tree commit diff
path: root/vm/sys/net/shell.nix
blob: 39ba52004ed6064bc440739091cfd6b56faa243a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# SPDX-License-Identifier: MIT
# SPDX-FileCopyrightText: 2021 Alyssa Ross <hi@alyssa.is>

import ../../../lib/eval-config.nix ({ config, ... }: with config.pkgs;

(import ./. { inherit config; }).overrideAttrs (
{ nativeBuildInputs ? [], ... }:

{
  nativeBuildInputs = nativeBuildInputs ++ [ cloud-hypervisor crosvm jq qemu_kvm reuse ];
}))