blob: f9d9eaffbf748a372646d87bce064691ab26833e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ config, pkgs, ... }:
{
boot.initrd.postDeviceCommands = ''
if [ "$(grep -c 7814026584 /proc/partitions)" != 4 ]; then
touch /tmp/will_reboot
echo 'echo "Missing disk detected, will reboot after 5mins. Remove /tmp/will_reboot to stop that"' > /root/.profile
(
sleep 300
[ -e /tmp/will_reboot ] && reboot -nf
) &
fi
'';
}
|