From 6d34c7dbd0c2cc7ec0f9b9f29cc74d4300a9a7da Mon Sep 17 00:00:00 2001 From: Andreas Schaafsma Date: Mon, 26 Jan 2026 23:04:10 +0100 Subject: [PATCH] update boot partition to new drive --- .../hardware/hardware-configuration.nix | 24 ++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/systems/x86_64-linux/drivebystation-nix/hardware/hardware-configuration.nix b/systems/x86_64-linux/drivebystation-nix/hardware/hardware-configuration.nix index e47be7a..55aef72 100644 --- a/systems/x86_64-linux/drivebystation-nix/hardware/hardware-configuration.nix +++ b/systems/x86_64-linux/drivebystation-nix/hardware/hardware-configuration.nix @@ -28,11 +28,33 @@ }; fileSystems."/boot" = { - device = "/dev/disk/by-uuid/E846-D998"; + #device = "/dev/disk/by-uuid/E846-D998"; + device = "/dev/disk/by-uuid/19BE-8BAA"; fsType = "vfat"; options = [ "fmask=0077" "dmask=0077" ]; }; + # Mount ntfs partition + fileSystems."/run/media/627C3BDF7C3BAD23" = { + device = "/dev/disk/by-uuid/627C3BDF7C3BAD23"; + fsType = "ntfs-3g"; + options = [ "rw" "uid=1000"]; + }; + + # Mount ntfs oldfiles drive partition + fileSystems."/run/media/oldfiles" = { + device = "/dev/disk/by-uuid/E2E26FFFE26FD677"; + fsType = "ntfs-3g"; + options = [ "rw" "uid=1000"]; + }; + + # Mount The Vault + fileSystems."/run/media/vault" = { + device = "/dev/disk/by-uuid/3470646370642DB4"; + fsType = "ntfs-3g"; + options = [ "rw" "uid=1000"]; + }; + # Try to fix hibernation