From 7fcd8b2ec88049a76d8f99001ab66612a31709ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Sat, 21 Mar 2026 17:38:00 +0100 Subject: [PATCH] feat: start ephvm with 30gb disk space --- hosts/ephvm/hardware-configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/ephvm/hardware-configuration.nix b/hosts/ephvm/hardware-configuration.nix index 2050d4f..3396757 100644 --- a/hosts/ephvm/hardware-configuration.nix +++ b/hosts/ephvm/hardware-configuration.nix @@ -9,6 +9,8 @@ (modulesPath + "/profiles/qemu-guest.nix") ]; + virtualisation.diskSize = 30720; # 30G + fileSystems."/" = { device = "/dev/disk/by-label/nixos"; autoResize = true;