NixFiles/systems/tau/systemd.nix
2023-05-13 21:48:48 +01:00

9 lines
124 B
Nix

{ config, ... }:
{
# Stop systemd from hanging for ages
systemd.extraConfig = ''
DefaultTimeoutStopSec=10s
'';
}