1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-18 21:41:53 +03:00
mobile-nixos/examples/testing/crash-before-switch-root/configuration.nix
Samuel Dionne-Riel bb7e9a3b7b examples: Add testing/crash-before-switch-root
Can be used as a single point of failure (hah!)
2020-11-08 18:37:13 -05:00

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