mirror of
https://github.com/samueldr/wip-pinebook-pro.git
synced 2024-11-05 18:49:41 +01:00
42e59d8105
This includes the proper kernel, but does nothing more.
26 lines
809 B
Nix
26 lines
809 B
Nix
# From this upstream repo:
|
|
# https://github.com/samueldr/cross-system
|
|
{ config, pkgs, lib, ... }:
|
|
{
|
|
|
|
nixpkgs.overlays = [
|
|
(self: super: {
|
|
# Does not cross-compile...
|
|
alsa-firmware = pkgs.runCommandNoCC "neutered-firmware" {} "mkdir -p $out";
|
|
})
|
|
];
|
|
|
|
# (Failing build in a dep to be investigated)
|
|
security.polkit.enable = false;
|
|
|
|
# cifs-utils fails to cross-compile
|
|
# Let's simplify this by removing all unneeded filesystems from the image.
|
|
boot.supportedFilesystems = lib.mkForce [ "vfat" ];
|
|
|
|
# texinfoInteractive has trouble cross-compiling
|
|
documentation.info.enable = lib.mkForce false;
|
|
|
|
# `xterm` is being included even though this is GUI-less.
|
|
# → https://github.com/NixOS/nixpkgs/pull/62852
|
|
services.xserver.desktopManager.xterm.enable = lib.mkForce false;
|
|
}
|