From c8afeaf5bc5517037990fc61ea9d8949455deed9 Mon Sep 17 00:00:00 2001 From: Nico Date: Sun, 15 Feb 2026 00:01:01 +1100 Subject: [PATCH] seika: add in reinstall drive id changes --- hosts/seika/hardware-configuration.nix | 32 ++++++++++++-------------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/hosts/seika/hardware-configuration.nix b/hosts/seika/hardware-configuration.nix index d2c34e8..2271cd9 100644 --- a/hosts/seika/hardware-configuration.nix +++ b/hosts/seika/hardware-configuration.nix @@ -14,35 +14,33 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/mapper/root"; + { device = "/dev/disk/by-uuid/120b2057-ed32-40c0-b838-25e5713cc5d6"; fsType = "btrfs"; - options = [ "subvol=root@nix" ]; + options = [ "subvol=@root" ]; }; - boot.initrd.luks.devices."root".device = "/dev/disk/by-uuid/8e9f6249-65c4-415a-a82f-321215024956"; - - fileSystems."/swap" = - { device = "/dev/mapper/root"; + fileSystems."/home" = + { device = "/dev/disk/by-uuid/120b2057-ed32-40c0-b838-25e5713cc5d6"; fsType = "btrfs"; - options = [ "subvol=@swap" ]; - }; - - fileSystems."/media" = - { device = "/dev/mapper/root"; - fsType = "btrfs"; - options = [ "subvol=@media" ]; + options = [ "subvol=@home" ]; }; fileSystems."/nix" = - { device = "/dev/mapper/root"; + { device = "/dev/disk/by-uuid/120b2057-ed32-40c0-b838-25e5713cc5d6"; fsType = "btrfs"; options = [ "subvol=@nix" ]; }; - fileSystems."/home" = - { device = "/dev/mapper/root"; + fileSystems."/media" = + { device = "/dev/disk/by-uuid/120b2057-ed32-40c0-b838-25e5713cc5d6"; fsType = "btrfs"; - options = [ "subvol=@home" ]; + options = [ "subvol=@media" ]; + }; + + fileSystems."/swap" = + { device = "/dev/disk/by-uuid/120b2057-ed32-40c0-b838-25e5713cc5d6"; + fsType = "btrfs"; + options = [ "subvol=@swap" ]; }; fileSystems."/boot" =