mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-15 11:03:37 +03:00
41af579ea5
On my qualcomm devices, it really shuts down the device even when plugged into power.
12 lines
213 B
Nix
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
|
|
''
|