diff options
| author | Petri Hienonen <petri.hienonen@gmail.com> | 2025-12-05 11:32:09 +0200 |
|---|---|---|
| committer | Petri Hienonen <petri.hienonen@gmail.com> | 2025-12-05 11:32:09 +0200 |
| commit | 006ca7c1d4f1eb30f8592ce976c104443f228c94 (patch) | |
| tree | b35fca4714eba7bc8b7f4ab7bae81c1d0cfaa071 | |
| parent | 22df10b69efe3e3549aceb6b1eb0179ad3c240df (diff) | |
| download | nixos-006ca7c1d4f1eb30f8592ce976c104443f228c94.tar.zst | |
Ignore wait online
| -rw-r--r-- | home/default.nix | 1 | ||||
| -rw-r--r-- | roles/shared.nix | 6 |
2 files changed, 6 insertions, 1 deletions
diff --git a/home/default.nix b/home/default.nix index 9c86e81..b73b871 100644 --- a/home/default.nix +++ b/home/default.nix @@ -44,6 +44,7 @@ in home.file = { "Calendar/radicale/.keep".text = ""; "Contacts/radicale/.keep".text = ""; + Downloads.source = config.lib.file.mkOutOfStoreSymlink "/media/skydrive/Downloads"; }; age = { diff --git a/roles/shared.nix b/roles/shared.nix index 3c508ee..e5c38b1 100644 --- a/roles/shared.nix +++ b/roles/shared.nix @@ -518,7 +518,11 @@ systemd = { network = { enable = true; - wait-online.enable = true; + wait-online = { + timeout = 1; + enable = true; + anyInterface = true; + }; config = { networkConfig = { SpeedMeter = true; |
