From d4fb99ce55f1a7936148fecb107df7bcb4047a3a Mon Sep 17 00:00:00 2001 From: Gregory Bednov Date: Wed, 2 Sep 2026 20:25:57 +0300 Subject: [PATCH] disabled network-manager when the node is build-node (bc it is virtual and special sometimes) --- configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index ed75da7..9d84160 100644 --- a/configuration.nix +++ b/configuration.nix @@ -897,7 +897,7 @@ in }; # каждый компьютер имеет выход в интернет - networking.networkmanager.enable = true; + networking.networkmanager.enable = ! config.services.harmonia.enable; networking.hostName = "nixos"; networking.firewall.allowedTCPPorts = [ 22 ] ++ lib.optionals config.services.harmonia.enable [ 80 ];