my over complex system configurations dotfiles.isabelroses.com/
nixos nix flake dotfiles linux
9
fork

Configure Feed

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

systems/amaterasu: use more accurate host paths

isabel 6ab4716e e7ce1f1e

+7 -3
+7 -3
systems/amaterasu/hardware.nix
··· 1 1 { 2 2 fileSystems = { 3 3 "/" = { 4 - device = "/dev/disk/by-label/root"; 4 + device = "/dev/disk/by-uuid/3a898325-08a7-4f9f-ab19-380765bcaf92"; 5 5 fsType = "btrfs"; 6 6 }; 7 7 8 8 "/boot" = { 9 - device = "/dev/disk/by-label/boot"; 9 + device = "/dev/disk/by-uuid/36A9-4288"; 10 10 fsType = "vfat"; 11 + options = [ 12 + "fmask=0022" 13 + "dmask=0022" 14 + ]; 11 15 }; 12 16 }; 13 17 14 18 swapDevices = [ 15 - { device = "/dev/disk/by-label/swap"; } 19 + { device = "/dev/disk/by-uuid/55606623-362b-4c53-a9da-26ea202aff23"; } 16 20 ]; 17 21 }