about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@tvl.su>2024-08-31T18·47+0300
committerclbot <clbot@tvl.fyi>2024-08-31T23·46+0000
commitb3c790a81ea8dba56acfec04e32d4f232762afcc (patch)
tree79163bf6a5e12c5a588ca7076e07f8614b1d59c0
parenta28c495c38a6b8c98f77d2196fa6dd51a74c7049 (diff)
fix(tazjin/khamovnik): ensure networkmanager is always enabled r/8625
Got into weird states more than once while the private configuration wasn't
available ...

Change-Id: I75b1a242d9cf10f5e4ac27ad7fce3e40a79898cc
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12401
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
-rw-r--r--users/tazjin/nixos/khamovnik/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/users/tazjin/nixos/khamovnik/default.nix b/users/tazjin/nixos/khamovnik/default.nix
index d5b84591ce55..9f92bcbc7dc5 100644
--- a/users/tazjin/nixos/khamovnik/default.nix
+++ b/users/tazjin/nixos/khamovnik/default.nix
@@ -64,6 +64,7 @@ in
   tvl.cache.enable = true;
 
   networking.hostName = "khamovnik";
+  networking.networkmanager.enable = true;
 
   nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
   powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";