From 2d52ebce5204f7e6af339d61783873d32e48b5c0 Mon Sep 17 00:00:00 2001 From: Felix Albrigtsen Date: Sat, 9 Nov 2024 21:42:44 +0100 Subject: [PATCH] Ildkule: hardware-config: use UUIDs --- hosts/ildkule/hardware-configuration.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/hosts/ildkule/hardware-configuration.nix b/hosts/ildkule/hardware-configuration.nix index f2b59ac..ccc6737 100644 --- a/hosts/ildkule/hardware-configuration.nix +++ b/hosts/ildkule/hardware-configuration.nix @@ -3,8 +3,14 @@ imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi" ]; boot.initrd.kernelModules = [ "nvme" ]; - fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; }; - fileSystems."/data" = { device = "/dev/vdb1"; fsType = "ext4"; }; + fileSystems."/" = { + device = "/dev/disk/by-uuid/e35eb4ce-aac3-4f91-8383-6e7cd8bbf942"; + fsType = "ext4"; + }; + fileSystems."/data" = { + device = "/dev/disk/by-uuid/0a4c1234-02d3-4b53-aeca-d95c4c8d534b"; + fsType = "ext4"; + }; networking.useDHCP = lib.mkDefault true; }