From 9951ffe3e4135cb4ea5e46a906c93c003fd9aa02 Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Sun, 29 Jan 2023 11:38:39 +0700 Subject: [PATCH] hosts/hyacinth: add smbd support for qemu --- hosts/hyacinth/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/hyacinth/default.nix b/hosts/hyacinth/default.nix index 07821d0..dfc8295 100644 --- a/hosts/hyacinth/default.nix +++ b/hosts/hyacinth/default.nix @@ -43,5 +43,8 @@ enable = true; openFirewall = true; }; - virtualisation.libvirtd.enable = true; + virtualisation.libvirtd = { + enable = true; + qemu.package = pkgs.qemu_kvm.override { smbdSupport = true; }; + }; }