2023-11-22 13:38:25 +01:00
|
|
|
{ pkgs, config, ... }:
|
2023-10-28 22:09:36 +02:00
|
|
|
{
|
|
|
|
imports = [
|
2023-11-22 13:38:25 +01:00
|
|
|
<nixos-hardware/pine64/pinebook-pro>
|
2023-10-29 17:20:35 +01:00
|
|
|
<nixpkgs/nixos/modules/installer/sd-card/sd-image-aarch64.nix>
|
2023-11-22 00:52:31 +01:00
|
|
|
./os/loader.nix
|
2023-10-28 22:09:36 +02:00
|
|
|
];
|
2023-11-22 13:38:25 +01:00
|
|
|
# nixos-hardware use latest kernel by default. This obviously runs quickly out of sync with zfs packages.
|
|
|
|
# zfs packages are included despite me asking anything zfs, probably they're in the image for installation purposes?
|
|
|
|
boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
|
2023-11-22 14:05:48 +01:00
|
|
|
|
|
|
|
networking.hostName = "pindakaas";
|
|
|
|
frogeye.desktop.xorg = true;
|
2023-10-28 22:09:36 +02:00
|
|
|
}
|