From 3b727bfdd3e74d41f6225f6a4f92a7b625f11810 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Wed, 9 Nov 2022 12:04:56 -0600 Subject: [PATCH] adding storage disk to Kaladin --- system/kaladin/hardware-configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/system/kaladin/hardware-configuration.nix b/system/kaladin/hardware-configuration.nix index e155ef8..a153b9c 100644 --- a/system/kaladin/hardware-configuration.nix +++ b/system/kaladin/hardware-configuration.nix @@ -34,6 +34,12 @@ options = [ "subvol=@log" "noatime" "ssd" "space_cache" "clear_cache" "compress=zstd" ]; }; + fileSystems."/run/media/chris/Storage" = + { device = "/dev/disk/by-uuid/4c7d4273-7b72-4aa8-8e1c-e281543d06cb"; + fsType = "btrfs"; + options = [ "noatime" "space_cache" "clear_cache" "compress=zstd" ]; + }; + fileSystems."/boot" = { device = "/dev/disk/by-uuid/35A0-C1F1"; fsType = "vfat";