mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-15 02:43:24 +03:00
10 lines
214 B
Nix
10 lines
214 B
Nix
{ config, pkgs, ... }:
|
|
|
|
let
|
|
device_config = config.mobile.device;
|
|
stage-1 = config.mobile.boot.stage-1;
|
|
in
|
|
{
|
|
system.build.initrd = pkgs.callPackage ../systems/initrd.nix { inherit device_config stage-1; };
|
|
}
|