24 lines
486 B
Nix
24 lines
486 B
Nix
# NOTE: this file was generated by the Mobile NixOS installer.
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
fileSystems = {
|
|
"/" = {
|
|
device = "/dev/disk/by-uuid/d9b3519e-7b26-495b-8aa2-601cac773f07";
|
|
fsType = "ext4";
|
|
};
|
|
};
|
|
|
|
boot.initrd.luks.devices = {
|
|
"LUKS-MOBILE-NIXOS-ROOTFS" = {
|
|
device = "/dev/disk/by-uuid/6ac23f93-cea1-454e-bae8-3edc07cb2d30";
|
|
};
|
|
};
|
|
|
|
boot.kernelParams = lib.mkAfter [
|
|
"psi=1"
|
|
];
|
|
|
|
nix.settings.max-jobs = lib.mkDefault 2;
|
|
}
|