feat: install nixos on orange pi 5 plus with edk2-rk3588(uefi)

This commit is contained in:
Ryan Yin
2024-03-05 20:38:31 +08:00
parent efcee11839
commit 4d0741c841
20 changed files with 560 additions and 29 deletions

View File

@@ -18,6 +18,7 @@
iftop
btop
nmon
sysbench
# system tools
psmisc # killall/pstree/prtstat/fuser/...

View File

@@ -15,6 +15,7 @@
../../base.nix
];
boot.loader.timeout = lib.mkForce 3; # wait for 3 seconds to select the boot entry
# Fix: jasper is marked as broken, refusing to evaluate.
environment.enableAllTerminfo = lib.mkForce false;
}

View File

@@ -1,4 +1,4 @@
{pkgs, ...}: {
{lib, ...}: {
# =========================================================================
# Base NixOS Configuration
# =========================================================================
@@ -14,4 +14,6 @@
../../base.nix
];
boot.loader.timeout = lib.mkForce 3; # wait for 3 seconds to select the boot entry
}