summary refs log tree commit diff
path: root/nixos/modules/virtualisation
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-11-24 21:24:33 +0000
committerGitHub <noreply@github.com>2019-11-24 21:24:33 +0000
commit38178a9a5bf9c7c76e7c1e53b9ff12d0bd272e4f (patch)
tree0f491e84f5703c155f5432cefce340a4607cbd5f /nixos/modules/virtualisation
parent814f9104d721dcbf267720d8964095626b45321b (diff)
parentedbf94d2ee8b4ba0d50f18752641c1d92a7d645b (diff)
Merge pull request #74030 from ckauhaus/connman-to-services.networking
connman: move "networking.connman" options to "services.connman"
Diffstat (limited to 'nixos/modules/virtualisation')
-rw-r--r--nixos/modules/virtualisation/qemu-vm.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/virtualisation/qemu-vm.nix b/nixos/modules/virtualisation/qemu-vm.nix
index e313d2b411bb4..31d332e9f07a7 100644
--- a/nixos/modules/virtualisation/qemu-vm.nix
+++ b/nixos/modules/virtualisation/qemu-vm.nix
@@ -620,7 +620,7 @@ in
 
     # Wireless won't work in the VM.
     networking.wireless.enable = mkVMOverride false;
-    networking.connman.enable = mkVMOverride false;
+    services.connman.enable = mkVMOverride false;
 
     # Speed up booting by not waiting for ARP.
     networking.dhcpcd.extraConfig = "noarp";