fix(tazjin/nixos): disable broken NetworkManager-wait-online.service

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
This commit is contained in:
Vincent Ambo 2022-07-14 18:29:29 +03:00 committed by clbot
parent 6dd8c0e40e
commit fd13a611e1

View file

@ -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;