mirror of
https://github.com/nix-community/home-manager
synced 2024-11-13 06:39:44 +01:00
nixos: increase TimeoutStartSec from 1m30s to 5m
I'm experiencing timeouts for home-manager-$USER.service in my NixOS VM tests. The NixOS testing framework increases the default timeout from 1m30 to 5m, but since home-manager specifies a timeout, that value wins. There's no point in having a tight timeout value, so increase it to 5m.
This commit is contained in:
parent
88c3564483
commit
6c99c414f3
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ in {
|
|||
User = usercfg.home.username;
|
||||
Type = "oneshot";
|
||||
RemainAfterExit = "yes";
|
||||
TimeoutStartSec = 90;
|
||||
TimeoutStartSec = "5m";
|
||||
SyslogIdentifier = "hm-activate-${username}";
|
||||
|
||||
ExecStart = let
|
||||
|
|
Loading…
Reference in a new issue