mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-11-30 19:26:21 +03:00
6be693e7b9
Hey, now, time to get some stage-2 action.
32 lines
701 B
Nix
32 lines
701 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
with import ./initrd-order.nix;
|
|
|
|
let
|
|
cfg = config.mobile.boot.stage-1.loop-forever;
|
|
in
|
|
{
|
|
options.mobile.boot.stage-1.loop-forever = {
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
Enables loop-forever.
|
|
This will "freeze" the initrd, no switch root will happen.
|
|
Enabling additional services (like `ssh`) will allow inspecting
|
|
the stage-1 phase.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config.mobile.boot.stage-1 = lib.mkIf cfg.enable {
|
|
init = lib.mkOrder (BEFORE_SWITCH_ROOT_INIT+1) ''
|
|
echo "Looping here forever..."
|
|
while true; do
|
|
sleep 3600
|
|
done
|
|
'';
|
|
};
|
|
}
|