diff options
Diffstat (limited to 'users')
-rw-r--r-- | users/tazjin/nixos/tverskoy/default.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/users/tazjin/nixos/tverskoy/default.nix b/users/tazjin/nixos/tverskoy/default.nix index 61f89399b78f..ab44c3b98e4f 100644 --- a/users/tazjin/nixos/tverskoy/default.nix +++ b/users/tazjin/nixos/tverskoy/default.nix @@ -220,6 +220,12 @@ in lib.fix(self: { # Do not restart the display manager automatically systemd.services.display-manager.restartIfChanged = lib.mkForce false; + # If something needs more than 10s to stop it should probably be + # killed. + systemd.extraConfig = '' + DefaultTimeoutStopSec=10s + ''; + time.timeZone = "Europe/Moscow"; users.users.tazjin = { |