nix-config/hosts/phone/hardware-configuration.nix
Donovan Glover 1d489ac6b4
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.
2024-08-12 06:35:50 -04:00

13 lines
201 B
Nix

{ lib, ... }:
{
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/c27b4193-56f0-44e8-bc45-6f64e4b721da";
fsType = "ext4";
};
};
nix.settings.max-jobs = lib.mkDefault 2;
}