From 34923781020fb60f92c3ed4673d5254d210a6d25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?m=C3=BCde?= Date: Sun, 31 May 2026 16:01:02 +0200 Subject: [PATCH] forge: add storage volume --- nixosConfigurations/hyperforge/hardware.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nixosConfigurations/hyperforge/hardware.nix b/nixosConfigurations/hyperforge/hardware.nix index a196adb..45ad020 100644 --- a/nixosConfigurations/hyperforge/hardware.nix +++ b/nixosConfigurations/hyperforge/hardware.nix @@ -10,5 +10,11 @@ swapUuid = "737140f2-c2fd-4af9-9974-f05642f8d90e"; ipv6Address = "2a01:4f8:c013:cbdd::1/64"; }; + + fileSystems."/var/lib/forgejo" = { + device = "/dev/disk/by-uuid/da5efb9a-7dc2-4fa3-aeca-c9bf634054b0"; + fsType = "ext4"; + options = [ "discard" "nofail" "defaults" ]; + }; }; }