nix-config/phone/hardware-configuration.nix
Donovan Glover a629f92827
meta: Revert combining mobile-nixos flake
This was causing a lot of issues unfortunately presumably due to things
not working with the aarch64 PinePhone system. Random errors like
"expected string 'D'" were common and I'd rather use a separate flake to
make things easier to debug and keep evaluation times to a minimum.
2024-06-15 10:47:03 -04:00

20 lines
430 B
Nix

# NOTE: this file was generated by the Mobile NixOS installer.
{ config, lib, pkgs, ... }:
{
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/63546625-e99c-4aa4-ba11-ff193ad13047";
fsType = "ext4";
};
};
boot.initrd.luks.devices = {
"LUKS-MOBILE-NIXOS-ROOTFS" = {
device = "/dev/disk/by-uuid/28e0bd73-e4fb-4002-9b17-a494823e6999";
};
};
nix.settings.max-jobs = lib.mkDefault 2;
}