NixFiles/systems/desktop/systemd.nix
2023-03-29 06:58:29 +01:00

9 lines
124 B
Nix

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