From 246c71dc43675b8f0d099458f0039a5e417be1f6 Mon Sep 17 00:00:00 2001 From: Corwin Perren Date: Sun, 7 Dec 2025 18:16:17 -0800 Subject: [PATCH] Fix clust-08 hardware --- hosts/cap-clust-08/hardware-configuration.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hosts/cap-clust-08/hardware-configuration.nix b/hosts/cap-clust-08/hardware-configuration.nix index b35edaa..e450374 100644 --- a/hosts/cap-clust-08/hardware-configuration.nix +++ b/hosts/cap-clust-08/hardware-configuration.nix @@ -30,12 +30,12 @@ boot.extraModulePackages = [ ]; fileSystems."/" = { - device = "/dev/disk/by-uuid/30b3183d-8358-46aa-b565-70c7d30af7c7"; + device = "/dev/disk/by-uuid/deed37a4-4d5a-465c-93e6-1b7b216e0a1c"; fsType = "ext4"; }; fileSystems."/boot" = { - device = "/dev/disk/by-uuid/BA04-7969"; + device = "/dev/disk/by-uuid/3ABB-C794"; fsType = "vfat"; options = [ "fmask=0077" @@ -44,7 +44,7 @@ }; swapDevices = [ - { device = "/dev/disk/by-uuid/42aeb402-5b5a-4423-b2a5-2c08935c9f57"; } + { device = "/dev/disk/by-uuid/6a99a895-a58c-43d2-8b62-02e3c915f46c"; } ]; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";