1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-15 19:23:01 +03:00
mobile-nixos/overlay/misc/hard-reboot.nix
2018-06-17 17:50:32 +00:00

12 lines
207 B
Nix

{writeScriptBin}:
#
# Forces a reboot using sysrq-triggers.
#
# This is useful in the initrd where `reboot` doesn't seem to work.
#
writeScriptBin "hard-reboot" ''
#!/bin/sh
echo b > /proc/sysrq-trigger
''