mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-23 00:34:24 +01:00
8af4d55361
Necessary since we had to reinstall Mobile NixOS due to being unable to recover from a chroot.
19 lines
347 B
Nix
19 lines
347 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
fileSystems = {
|
|
"/" = {
|
|
device = "/dev/disk/by-uuid/0a242de8-703e-46c1-a419-56109833aef5";
|
|
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;
|
|
}
|