From dece3f76da5914a9e653e296b1613387826248fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Thu, 27 Jul 2023 18:31:35 +0200 Subject: [PATCH] feat(home-assistant): fix wyoming config --- services/home-assistant/wyoming.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/services/home-assistant/wyoming.nix b/services/home-assistant/wyoming.nix index 9b69b4f..b6ac05e 100644 --- a/services/home-assistant/wyoming.nix +++ b/services/home-assistant/wyoming.nix @@ -1,4 +1,4 @@ -{ pkgs, inputs, ... }: +{ pkgs, lib, inputs, ... }: { imports = [ @@ -36,4 +36,8 @@ }; }; }; + + # needs access to /proc/cpuinfo + systemd.services."wyoming-faster-whisper-en".serviceConfig.ProcSubset = + lib.mkForce "all"; }