From 0821d2fd3b0575dba642eadac25772ea57325ac3 Mon Sep 17 00:00:00 2001 From: Joey Hafner Date: Wed, 5 Feb 2025 22:15:54 -0800 Subject: [PATCH] Fix: Replace placeholders with correct disk UUIDs --- dotfiles/systems/fighter/boot.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotfiles/systems/fighter/boot.nix b/dotfiles/systems/fighter/boot.nix index 0fe3ae4b..a4fdb880 100644 --- a/dotfiles/systems/fighter/boot.nix +++ b/dotfiles/systems/fighter/boot.nix @@ -1,12 +1,12 @@ { ... }: { fileSystems = { "/" = { - device = "/dev/disk/by-uuid/placeholder"; + device = "/dev/disk/by-uuid/88a3f223-ed42-4be1-a748-bb9e0f9007dc"; fsType = "ext4"; }; "/boot" = { - device = "/dev/disk/by-uuid/placeholder"; + device = "/dev/disk/by-uuid/744D-0867"; fsType = "vfat"; options = [ "fmask=0077" "dmask=0077" ]; };