From 69517aec74b4b9bc41d759c9c0b53dbec5dc4cca Mon Sep 17 00:00:00 2001 From: twoneis Date: Wed, 8 May 2024 16:07:12 +0200 Subject: [PATCH] added disk uuids --- devices/ellaca/hardware-config.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/devices/ellaca/hardware-config.nix b/devices/ellaca/hardware-config.nix index e78940f..f2c0e1d 100644 --- a/devices/ellaca/hardware-config.nix +++ b/devices/ellaca/hardware-config.nix @@ -5,27 +5,27 @@ boot.extraModulePackages = [ ]; fileSystems = { + "/boot" = { + device = "/dev/disk/by-uuid/646D-4793"; + fsType = "vfat"; + }; "/" = { - device = "/dev/nvme0n1p2"; + device = "/dev/disk/by-uuid/1a5777297-4ed3-48d7-adc7-a937fa93d868"; fsType = "btrfs"; options = [ "subvol=rootfs" "compress=zstd" "noatime" ]; }; - "/boot" = { - device = "/dev/nvme0n1p1"; - fsType = "vfat"; - }; "/nix" = { - device = "/dev/nvme0n1p2"; + device = "/dev/disk/by-uuid/1a5777297-4ed3-48d7-adc7-a937fa93d868"; fsType = "btrfs"; options = [ "subvol=nix" "compress=zstd" "noatime" ]; }; "/persist" = { - device = "/dev/nvme0n1p2"; + device = "/dev/disk/by-uuid/1a5777297-4ed3-48d7-adc7-a937fa93d868"; fsType = "btrfs"; options = [ "subvol=persist" "compress=zstd" "noatime" ]; }; "/ext" = { - device = "/dev/sda1"; + device = "/dev/disk/by-uuid/89112638-6953-48a7-9b2f-dd61ce9fe8b0"; fsType = "btrfs"; options = [ "subvol=ext" "compress=zstd" "noatime" ]; };