seika: add in reinstall drive id changes

This commit is contained in:
Nico 2026-02-15 00:01:01 +11:00
parent 0e23397308
commit c8afeaf5bc
Signed by: nico
SSH key fingerprint: SHA256:XuacYOrGqRxC3jVFjfLROn1CSvLz85Dec6N7O9Gwu/0

View file

@ -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" =