From 8528cdd3804a1571ce477f661a5bcad73e4c8e5b 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..dc46ec8 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-id/scsi-0HC_Volume_103812757"; + fsType = "ext4"; + options = [ + "defaults" + "discard" + ]; + }; + swapDevices = [ { device = "/dev/disk/by-uuid/aa0634e1-a1c2-4461-978a-cf1768f38b0c"; } ];