1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-15 11:03:37 +03:00
mobile-nixos/overlay/misc/hard-shutdown.nix
Samuel Dionne-Riel 41af579ea5 hard-*: Adds hard-shutdown script
On my qualcomm devices, it really shuts down the device even when
plugged into power.
2019-06-09 22:16:43 -04:00

12 lines
213 B
Nix

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