dbus: enable syscall filter
All checks were successful
Build / Create distribution (push) Successful in 1m33s
Test / Run NixOS test (push) Successful in 3m42s

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2025-01-22 02:01:01 +09:00
parent 5a64cdaf4f
commit 8c51012ef5
3 changed files with 9 additions and 4 deletions

View File

@@ -93,7 +93,7 @@ func (d *DBus) apply(_ *I) error {
ready := make(chan error, 1)
// background dbus proxy start
if err := d.proxy.Start(ready, d.out, true); err != nil {
if err := d.proxy.Start(ready, d.out, true, true); err != nil {
return fmsg.WrapErrorSuffix(err,
"cannot start message bus proxy:")
}