mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-15 02:43:24 +03:00
5fa2110c7b
This will be replaced with a better utility.
14 lines
162 B
Nix
14 lines
162 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.mobile.boot.stage-1;
|
|
in
|
|
{
|
|
config.mobile.boot.stage-1 = {
|
|
extraUtils = with pkgs; [
|
|
];
|
|
};
|
|
}
|