From cc831e7c5d095583cd72308c0d39963661f09185 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Wed, 26 Jun 2024 21:16:27 +0200 Subject: [PATCH] Use smaller qemu-utils for qemu-bridge-helper --- nixos-modules/host/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos-modules/host/default.nix b/nixos-modules/host/default.nix index 96fe5722..b6f61cef 100644 --- a/nixos-modules/host/default.nix +++ b/nixos-modules/host/default.nix @@ -349,7 +349,7 @@ in # This helper creates tap interfaces and attaches them to a bridge # for qemu regardless if it is run as root or not. security.wrappers.qemu-bridge-helper = lib.mkIf (!config.virtualisation.libvirtd.enable) { - source = "${pkgs.qemu}/libexec/qemu-bridge-helper"; + source = "${pkgs.qemu-utils}/libexec/qemu-bridge-helper"; owner = "root"; group = "root"; capabilities = "cap_net_admin+ep";