config: disable ipc module by default and move it to the main instance

This is not part of the policy, it's something standalone that writes metadata

Needs to be disabled by default, since it's not built by default now
This commit is contained in:
George Kiagiadakis 2021-05-06 14:16:50 +03:00
parent 86ffac19e5
commit 157d4d95c9
2 changed files with 3 additions and 3 deletions

View file

@ -17,3 +17,6 @@ load_script("suspend-node.lua")
-- Automatically sets device profiles to 'On'
load_module("device-activation")
-- Listens for events comming from the wpipc library
--load_module("ipc", {["path"] = "wpipc"})

View file

@ -27,9 +27,6 @@ function default_policy.enable()
-- API to access mixer controls, needed for volume ducking
load_module("mixer-api")
-- Listens for events comming from the wpipc library
load_module("ipc", {["path"] = "wpipc"})
-- Create sessions statically at startup
load_script("static-sessions.lua", default_policy.sessions)