mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 11:39:46 +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
2b637f3289
commit
f7848d3e5f
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ in {
|
||||||
User = usercfg.home.username;
|
User = usercfg.home.username;
|
||||||
Type = "oneshot";
|
Type = "oneshot";
|
||||||
RemainAfterExit = "yes";
|
RemainAfterExit = "yes";
|
||||||
TimeoutStartSec = 90;
|
TimeoutStartSec = "5m";
|
||||||
SyslogIdentifier = "hm-activate-${username}";
|
SyslogIdentifier = "hm-activate-${username}";
|
||||||
|
|
||||||
ExecStart = let
|
ExecStart = let
|
||||||
|
|
Loading…
Reference in a new issue