From 33352e69638b01d11e371e2cea90c0db5d984412 Mon Sep 17 00:00:00 2001 From: iFargle Date: Thu, 21 Sep 2023 19:44:23 +0900 Subject: [PATCH] Add QEMU KVM to vmz --- nixos/hosts/nixos-vm-01/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nixos/hosts/nixos-vm-01/default.nix b/nixos/hosts/nixos-vm-01/default.nix index aab79539..1eb00a06 100644 --- a/nixos/hosts/nixos-vm-01/default.nix +++ b/nixos/hosts/nixos-vm-01/default.nix @@ -13,6 +13,11 @@ "armv7l-linux" ]; + environment.systemPackages = with pkgs; [ + # Currently used for building the Linode image + qemu_kvm + ]; + fileSystems."/" = { device = "/dev/disk/by-label/ROOT"; fsType = "ext4";