1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-14 18:21:41 +03:00
mobile-nixos/modules/initrd-base.nix
2020-01-10 00:46:11 -05:00

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
];
};
}