diff --git a/home-manager/hosts/wheatley/lillian.nix b/home-manager/hosts/wheatley/lillian.nix index 5c9f377..9bd29f7 100644 --- a/home-manager/hosts/wheatley/lillian.nix +++ b/home-manager/hosts/wheatley/lillian.nix @@ -35,5 +35,5 @@ }; # https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion - home.stateVersion = "24.05"; + home.stateVersion = "25.05"; } diff --git a/nixos/hosts/wheatley/hardware-configuration.nix b/nixos/hosts/wheatley/hardware-configuration.nix index 13ea28d..67ab2d1 100644 --- a/nixos/hosts/wheatley/hardware-configuration.nix +++ b/nixos/hosts/wheatley/hardware-configuration.nix @@ -1,18 +1,18 @@ { fileSystems."/boot" = { - device = "/dev/disk/by-label/BOOT"; + device = "/dev/disk/by-path/platform-fe340000.mmc-part1"; fsType = "vfat"; }; fileSystems."/" = { - device = "/dev/disk/by-label/NIXOS"; + device = "/dev/disk/by-path/platform-fe340000.mmc-part3"; fsType = "ext4"; options = ["noatime"]; }; swapDevices = [ { - device = "/dev/disk/by-id/mmc-USD00_0x66b39865-part2"; + device = "/dev/disk/by-path/platform-fe340000.mmc-part2"; } ]; }