From 696bbcdcdf7dcb578b6087b9dd9650e3d5d715d7 Mon Sep 17 00:00:00 2001 From: Romek <89905833+romek-codes@users.noreply.github.com> Date: Fri, 8 Aug 2025 21:49:30 +0200 Subject: [PATCH] Update systemd extraConfig to rfc 42 --- nixos/systemd-boot.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/systemd-boot.nix b/nixos/systemd-boot.nix index 7cd57b0..8f593ea 100644 --- a/nixos/systemd-boot.nix +++ b/nixos/systemd-boot.nix @@ -38,5 +38,5 @@ }; # To avoid systemd services hanging on shutdown - systemd.extraConfig = "DefaultTimeoutStopSec=10s"; + systemd.settings.Manager = { DefaultTimeoutStopSec = "10s"; }; }