From 9318ae53f5c5ce9e9d3f92abd25b998b58f85386 Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Sun, 26 Oct 2025 17:28:50 +0100 Subject: [PATCH] tadpole: Add mount for `tadpole-1` volume --- hosts/tadpole/hardware-configuration.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/tadpole/hardware-configuration.nix b/hosts/tadpole/hardware-configuration.nix index 5d5d6ae..154795f 100644 --- a/hosts/tadpole/hardware-configuration.nix +++ b/hosts/tadpole/hardware-configuration.nix @@ -31,6 +31,15 @@ fsType = "ext4"; }; + fileSystems."/mnt/tadpole-1" = { + device = "/dev/disk/by-uuid/e359ca3c-4b4d-49dc-bd37-edf2b90654cd"; + fsType = "ext4"; + options = [ + "defaults" + "discard" + ]; + }; + swapDevices = [ { device = "/dev/disk/by-uuid/aa0634e1-a1c2-4461-978a-cf1768f38b0c"; } ];