From cd6b528692bcc7cabdd8c732d9c0534266549aee Mon Sep 17 00:00:00 2001 From: John Ogle Date: Sat, 10 Jan 2026 09:34:28 -0800 Subject: [PATCH] [john-endesktop] Update with actual disk ids --- .../john-endesktop/hardware-configuration.nix | 21 +++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/machines/john-endesktop/hardware-configuration.nix b/machines/john-endesktop/hardware-configuration.nix index 5b47c0e..2dfd27b 100644 --- a/machines/john-endesktop/hardware-configuration.nix +++ b/machines/john-endesktop/hardware-configuration.nix @@ -18,12 +18,29 @@ # File systems - these will need to be updated after installation # The nvme0n1p5 partition will be formatted as btrfs for NixOS root fileSystems."/" = { - # Update this device path after installation - device = "/dev/disk/by-uuid/CHANGE-THIS-TO-YOUR-UUID"; + device = "/dev/disk/by-uuid/5f4ad025-bfab-4aed-a933-6638348059e5"; fsType = "btrfs"; options = [ "subvol=@" "compress=zstd" "noatime" ]; }; + fileSystems."/home" = { + device = "/dev/disk/by-uuid/5f4ad025-bfab-4aed-a933-6638348059e5"; + fsType = "btrfs"; + options = [ "subvol=@home" "compress=zstd" "noatime" ]; + }; + + fileSystems."/nix" = { + device = "/dev/disk/by-uuid/5f4ad025-bfab-4aed-a933-6638348059e5"; + fsType = "btrfs"; + options = [ "subvol=@nix" "compress=zstd" "noatime" ]; + }; + + fileSystems."/var/log" = { + device = "/dev/disk/by-uuid/5f4ad025-bfab-4aed-a933-6638348059e5"; + fsType = "btrfs"; + options = [ "subvol=@log" "compress=zstd" "noatime" ]; + }; + fileSystems."/boot" = { # This should match your current EFI partition device = "/dev/disk/by-uuid/F5C6-D570";