1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-17 04:51:31 +03:00
mobile-nixos/overlay/default.nix

16 lines
419 B
Nix
Raw Normal View History

2018-06-10 03:57:12 +03:00
# This defines the mobile-nixos "overlay" which is
# basically a known channel + this overlay defined
# in overlay.nix.
#
# Every derivations building a boot image and or a
# complete system will import this file somehow.
let
nixpkgs = import (fetchTarball channel:nixos-unstable);
in
nixpkgs {
crossSystem = (nixpkgs {}).lib.systems.examples.aarch64-multiplatform;
2018-06-10 03:57:12 +03:00
overlays = [
(import ./overlay.nix)
];
}