chore: update flake

This commit is contained in:
Leon Schwarzäugl 2025-08-09 14:25:59 +02:00
parent 9577cdf243
commit 3957e1a4a7
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
7 changed files with 1861 additions and 150 deletions

View file

@ -3,9 +3,9 @@
options.swarselmodules.systemdTimeout = lib.mkEnableOption "systemd timeout config";
config = lib.mkIf config.swarselmodules.systemdTimeout {
# systemd
systemd.extraConfig = ''
DefaultTimeoutStartSec=60s
DefaultTimeoutStopSec=15s
'';
systemd.settings.Manager = {
DefaultTimeoutStartSec = "60s";
DefaultTimeoutStopSec = "15s";
};
};
}