1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-15 02:43:24 +03:00
mobile-nixos/modules/initrd.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; };
}