From 0546658ccc4cec66e15bfa1dfa5a45ad10802795 Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Mon, 18 Nov 2024 01:33:41 +0000 Subject: [PATCH] Update hosts/Parzival/hardware-configuration.nix Update from UUID to label disks --- hosts/Parzival/hardware-configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/Parzival/hardware-configuration.nix b/hosts/Parzival/hardware-configuration.nix index ceb4ae2..4170542 100644 --- a/hosts/Parzival/hardware-configuration.nix +++ b/hosts/Parzival/hardware-configuration.nix @@ -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" ]; };