From 3f57ab51d29238399bf36942ff55a4d635db9fef Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Tue, 28 Feb 2023 14:54:50 -0600 Subject: [PATCH] adding hoid's new btrfs disks --- system/hoid/hardware-configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/system/hoid/hardware-configuration.nix b/system/hoid/hardware-configuration.nix index 04d8256..f9f7ffb 100644 --- a/system/hoid/hardware-configuration.nix +++ b/system/hoid/hardware-configuration.nix @@ -18,6 +18,12 @@ fsType = "ext4"; }; + fileSystems."/storage" = + { device = "/dev/disk/by-label/storage"; + fsType = "btrfs"; + options = [ "noatime" "nodiratime" "compress=zstd" ]; + }; + fileSystems."/boot/efi" = { device = "/dev/disk/by-uuid/E7D2-7D56"; fsType = "vfat";