summary refs log tree commit diff
path: root/vm/sys/net/shell.nix
blob: 771043835e8c7fe8825aec1485d01f7a6e5f5cb0 (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 jq qemu_kvm reuse ];
}))