1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-15 02:43:24 +03:00
mobile-nixos/modules/initrd-base.nix

15 lines
181 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.mobile.boot.stage-1;
in
{
config.mobile.boot.stage-1 = {
extraUtils = with pkgs; [
2020-01-10 08:46:11 +03:00
hardshutdown
];
};
}