NixFiles/systems/nixos/systemd.nix

9 lines
124 B
Nix
Raw Normal View History

2023-12-19 19:08:55 +00:00
{ config, ... }:
{
# Stop systemd from hanging for ages
systemd.extraConfig = ''
DefaultTimeoutStopSec=10s
'';
}