mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-29 19:54:48 +01:00
494f40e691
This is an initial configuration of the PinePhone with a nixpkgs build from 2023-11-15. Notably the installer uses uuids by default, so it's up to the user to specify their own hardware-configuration.nix.
20 lines
430 B
Nix
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;
|
|
}
|