From eab165261533c9ac4b3f7f8062ed0aa6dcc8f76a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Barnouin?= Date: Fri, 13 Sep 2024 11:48:15 +0200 Subject: [PATCH] Add secondary drive for hypervisor --- hosts/nixmox-perseverance/hardware-configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hosts/nixmox-perseverance/hardware-configuration.nix b/hosts/nixmox-perseverance/hardware-configuration.nix index ae708dc..ac4db20 100644 --- a/hosts/nixmox-perseverance/hardware-configuration.nix +++ b/hosts/nixmox-perseverance/hardware-configuration.nix @@ -38,6 +38,10 @@ device = "/dev/disk/by-label/ESP"; fsType = "vfat"; }; + "/var/lib/microvms" = { + device = "/dev/vdb1"; + fsType = "ext4"; + }; }; services.fstrim = {