about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-07-14T15·29+0300
committerclbot <clbot@tvl.fyi>2022-07-14T15·32+0000
commitfd13a611e1083ce7be25e03f9dfb30c645074db2 (patch)
tree2a8f28cb968dbdb77b71884e7ffdcfa36fdf1ded
parent6dd8c0e40ea2d733892ee7ffd4f6a20afef6825e (diff)
fix(tazjin/nixos): disable broken NetworkManager-wait-online.service r/4302
Change-Id: I7753ccb53ce7a692b79f46e62ce395dfd1770edf
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5950
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
-rw-r--r--users/tazjin/nixos/modules/physical.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/users/tazjin/nixos/modules/physical.nix b/users/tazjin/nixos/modules/physical.nix
index f2e44c479a..1f8b694381 100644
--- a/users/tazjin/nixos/modules/physical.nix
+++ b/users/tazjin/nixos/modules/physical.nix
@@ -1,5 +1,5 @@
 # Default configuration settings for physical machines that I use.
-{ pkgs, depot, ... }:
+{ lib, pkgs, depot, ... }:
 
 let
   pass-otp = pkgs.pass.withExtensions (e: [ e.pass-otp ]);
@@ -84,6 +84,9 @@ in
     fwupd.enable = true;
   };
 
+  # Disable the broken NetworkManager-wait-online.service
+  systemd.services.NetworkManager-wait-online.enable = lib.mkForce false;
+
   programs = {
     fish.enable = true;
     mosh.enable = true;