mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-14 18:21:41 +03:00
15 lines
181 B
Nix
15 lines
181 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.mobile.boot.stage-1;
|
|
in
|
|
{
|
|
config.mobile.boot.stage-1 = {
|
|
extraUtils = with pkgs; [
|
|
hardshutdown
|
|
];
|
|
};
|
|
}
|