mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2025-01-07 03:58:59 +03:00
12 lines
320 B
Nix
12 lines
320 B
Nix
# 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.
|
|
(import (fetchTarball channel:nixos-unstable)) {
|
|
overlays = [
|
|
(import ./overlay.nix)
|
|
];
|
|
}
|