me like nix
0

Configure Feed

Select the types of activity you want to include in your feed.

install new drives

author
Sean Aye
date (Jul 14, 2025, 12:03 PM -0400) commit b521e4f2 parent 95e30a92 change-id zwtowpyy
+12 -1
+12 -1
hardware-configuration.nix
··· 4 4 { 5 5 config, 6 6 lib, 7 - pkgs, 8 7 modulesPath, 9 8 ... 10 9 }: ··· 38 37 "fmask=0077" 39 38 "dmask=0077" 40 39 ]; 40 + }; 41 + fileSystems."/mnt/storage1" = { 42 + device = "/dev/disk/by-uuid/3bb5c3d3-f3ce-4c54-a86c-589b477eda20"; 43 + fsType = "ext4"; 44 + # reduce write ops 45 + options = [ "noatime" ]; 46 + }; 47 + fileSystems."/mnt/storage2" = { 48 + device = "/dev/disk/by-uuid/40b9cab0-9f25-4b36-9f22-6ebea1fe6e7a"; 49 + fsType = "ext4"; 50 + # reduce write ops 51 + options = [ "noatime" ]; 41 52 }; 42 53 43 54 swapDevices = [ ];