summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2021-12-08 17:18:00 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2021-12-08 17:18:00 +0100
commiteea1980adc1eb8c4afbcc2445140ded761abd1ec (patch)
tree524aa6b92a0818a96137802508955dd6859b46d2 /hosts
parente70cadf597b5867095238fb5070f0beda6091db5 (diff)
downloadnixos-eea1980adc1eb8c4afbcc2445140ded761abd1ec.tar
nixos-eea1980adc1eb8c4afbcc2445140ded761abd1ec.tar.gz
nixos-eea1980adc1eb8c4afbcc2445140ded761abd1ec.tar.bz2
nixos-eea1980adc1eb8c4afbcc2445140ded761abd1ec.tar.xz
nixos-eea1980adc1eb8c4afbcc2445140ded761abd1ec.zip
pppd@vidhar: wait for up
Diffstat (limited to 'hosts')
-rw-r--r--hosts/vidhar/dsl.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/hosts/vidhar/dsl.nix b/hosts/vidhar/dsl.nix
index 1651284c..5f53df87 100644
--- a/hosts/vidhar/dsl.nix
+++ b/hosts/vidhar/dsl.nix
@@ -38,7 +38,8 @@ in {
38 ''; 38 '';
39 }; 39 };
40 systemd.services."pppd-telekom".serviceConfig = lib.mkForce { 40 systemd.services."pppd-telekom".serviceConfig = lib.mkForce {
41 ExecStart = "${lib.getBin pkgs.ppp}/sbin/pppd call telekom nodetach nolog +ipv6"; 41 Type = "forking";
42 ExecStart = "${lib.getBin pkgs.ppp}/sbin/pppd call telekom updetach nolog +ipv6";
42 Restart = "always"; 43 Restart = "always";
43 RestartSec = 5; 44 RestartSec = 5;
44 45