phone: Update device UUIDs

Had to reinstall NixOS on the PinePhone again since a corrupted Nix
store broke everything and was unrecoverable due to not being able to
successfully repair specific files with the use of SSH substituters.

This time we will be trying the PinePhone without LUKS encryption to see
if this makes a difference in the performance of the device. Technically
encryption *isn't* supposed to make things slower in 2024 but the
PinePhone CPU is old enough that performance could've been affected.
This commit is contained in:
Donovan Glover 2024-08-12 06:32:56 -04:00
parent 1427bdc4dd
commit 1d489ac6b4
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -3,16 +3,10 @@
{
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/0a242de8-703e-46c1-a419-56109833aef5";
device = "/dev/disk/by-uuid/c27b4193-56f0-44e8-bc45-6f64e4b721da";
fsType = "ext4";
};
};
boot.initrd.luks.devices = {
"LUKS-IPHONE-ROOTFS" = {
device = "/dev/disk/by-uuid/969741b3-6cc3-4667-92e8-5f0240253e6f";
};
};
nix.settings.max-jobs = lib.mkDefault 2;
}