mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-07 17:04:00 +01:00
1d489ac6b4
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.
13 lines
201 B
Nix
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;
|
|
}
|