Update hosts/Parzival/hardware-configuration.nix

Update from UUID to label disks
This commit is contained in:
TheWanderingCrow 2024-11-18 01:33:41 +00:00
parent a4b0c81791
commit 0546658ccc

View file

@ -14,12 +14,12 @@
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/b8684e4b-b1be-4040-b575-d9a3c116dd23";
{ device = "/dev/disk/by-label/nixos";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/A189-720A";
{ device = "/dev/disk/by-label/boot";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};