2018-06-17 20:50:32 +03:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.mobile.boot.stage-1;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
config.mobile.boot.stage-1 = {
|
2020-01-10 08:45:39 +03:00
|
|
|
extraUtils = with pkgs; [
|
2020-01-10 08:46:11 +03:00
|
|
|
hardshutdown
|
2018-06-17 20:50:32 +03:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|