summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
Diffstat (limited to 'machines')
-rw-r--r--machines/lapin/devices.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/machines/lapin/devices.nix b/machines/lapin/devices.nix
index f7538a3..6bbece8 100644
--- a/machines/lapin/devices.nix
+++ b/machines/lapin/devices.nix
@@ -43,4 +43,13 @@
       { base = "fc00:d0c::/32"; size = 48; }
     ];
   };
+
+  fileSystems = {
+    # Mount the large-ish service state folder to a regrowable volume. :)
+    "/srv" = {
+      device = "/dev/disk/by-id/scsi-0HC_Volume_101611810";
+      fsType = "ext4";
+      options = [ "defaults" "discard" ];
+    };
+  };
 }