1
0
mirror of https://github.com/samueldr/wip-pinebook-pro.git synced 2024-06-29 07:58:32 +02:00
wip-pinebook-pro/default.nix
2020-01-06 15:21:02 -05:00

18 lines
273 B
Nix

{
pkgs ? import (builtins.fetchTarball "channel:nixos-19.09") {
overlays = [
(import ./overlay.nix)
];
}
}:
let
pkgs' = if builtins.currentSystem == "aarch64-linux"
then pkgs
else pkgs.pkgsCross.aarch64-multiplatform
;
in
{
pkgs = pkgs';
}