1
0
mirror of https://github.com/samueldr/wip-pinebook-pro.git synced 2024-06-01 02:23:34 +02:00
wip-pinebook-pro/configuration.nix
Samuel Dionne-Riel f9785b285f Prefer "external booting" u-boot by default.
Less rude for end-users expecting to be able to SD boot once flashed.
2020-01-21 22:37:42 -05:00

25 lines
592 B
Nix

{ config, pkgs, lib, ... }:
let
uboot = pkgs.uBootPinebookProExternalFirst;
in
{
imports = [
<nixpkgs/nixos/modules/profiles/base.nix>
<nixpkgs/nixos/modules/profiles/minimal.nix>
<nixpkgs/nixos/modules/profiles/installation-device.nix>
./nixos/sd-image-aarch64.nix
./pinebook_pro.nix
];
sdImage = {
manipulateImageCommands = ''
(PS4=" $ "; set -x
dd if=${uboot}/idbloader.img of=$img bs=512 seek=64 conv=notrunc
dd if=${uboot}/u-boot.itb of=$img bs=512 seek=16384 conv=notrunc
)
'';
compressImage = lib.mkForce false;
};
}