diff options
| author | tuturuu <zedddiezxc@gmail.com> | 2026-01-12 14:06:41 +0100 |
|---|---|---|
| committer | tuturuu <zedddiezxc@gmail.com> | 2026-01-12 14:06:41 +0100 |
| commit | bad14378337a91ad7c87c8a249c6bb054a09efeb (patch) | |
| tree | eb92bb03e6f8fa063c32be4cef4fd0fbc51bf242 /vmtest | |
| parent | 781f014eb86f7e7dc05e660d427d54eabde3d2c0 (diff) | |
add wget to vmtest
Diffstat (limited to 'vmtest')
| -rw-r--r-- | vmtest/vmtest.nix | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/vmtest/vmtest.nix b/vmtest/vmtest.nix index d94b0e8..d5e7246 100644 --- a/vmtest/vmtest.nix +++ b/vmtest/vmtest.nix @@ -1,8 +1,11 @@ -{ pkgs ? import <nixpkgs> {} }: +{ + pkgs ? import <nixpkgs> { }, +}: pkgs.mkShell { - buildInputs = with pkgs; [ - grub2 - qemu - ]; + buildInputs = with pkgs; [ + grub2 + qemu + wget + ]; } |
