From 98f7d5470c537bf167fd185c7f5a3a4e229279c9 Mon Sep 17 00:00:00 2001 From: Ciapa Date: Thu, 11 May 2023 20:43:45 +0000 Subject: [PATCH] Mount mirror data volume --- hosts/mirror.lewd.wtf/hardware-configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/mirror.lewd.wtf/hardware-configuration.nix b/hosts/mirror.lewd.wtf/hardware-configuration.nix index 587579e..f00e811 100644 --- a/hosts/mirror.lewd.wtf/hardware-configuration.nix +++ b/hosts/mirror.lewd.wtf/hardware-configuration.nix @@ -9,5 +9,10 @@ fsType = "ext4"; }; + fileSystems."/var/www/mirror" = { + device = "/dev/disk/by-label/data"; + fsType = "ext4"; + }; + services.qemuGuest.enable = true; }