mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-18 21:41:53 +03:00
bb7e9a3b7b
Can be used as a single point of failure (hah!)
10 lines
158 B
Nix
10 lines
158 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
mobile.boot.stage-1.tasks = [ ./crash.rb ];
|
|
|
|
mobile.boot.stage-1.bootConfig = {
|
|
log.level = lib.mkForce "INFO";
|
|
};
|
|
}
|