refactor(wpcarro/ava): Prefer disk/by-label to disk/by-uuid

I broke LVM (Logical Volume Manager - maybe?) when I did the following:

```shell
$ HOSTNAME=ava sudo rebuild-system
$ sudo reboot now
```

I had to rollback to the initial NixOS version and try again.

Change-Id: If90e5e23767392202425181be986f81deb5ddff7
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5742
Reviewed-by: wpcarro <wpcarro@gmail.com>
Autosubmit: wpcarro <wpcarro@gmail.com>
Tested-by: BuildkiteCI
This commit is contained in:
William Carroll 2022-05-22 20:17:55 -07:00 committed by clbot
parent 534d7c34fc
commit e3530149c5
2 changed files with 4 additions and 4 deletions

View file

@ -13,13 +13,13 @@
fileSystems."/" =
{
device = "/dev/disk/by-uuid/60d92789-c44e-4620-885d-1d81d0759f1d";
device = "/dev/disk/by-label/NIXROOT";
fsType = "ext4";
};
fileSystems."/boot" =
{
device = "/dev/disk/by-uuid/C62C-9B32";
device = "/dev/disk/by-label/NIXBOOT";
fsType = "vfat";
};

View file

@ -11,12 +11,12 @@
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/b8b911ee-e9b9-40ea-89d6-551f11350e7b";
device = "/dev/disk/by-label/NIXROOT";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/A7EA-369C";
device = "/dev/disk/by-label/NIXBOOT";
fsType = "vfat";
};