update README document
Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
This commit is contained in:
parent
52f986559c
commit
0ef321ad6f
26
README.md
26
README.md
|
@ -82,18 +82,36 @@ This adds the `environment.fortify` option:
|
||||||
share = pkgs.vesktop;
|
share = pkgs.vesktop;
|
||||||
};
|
};
|
||||||
|
|
||||||
chromium.dbus.config = {
|
chromium.dbus = {
|
||||||
|
configSystem = {
|
||||||
|
talk = [
|
||||||
|
"org.bluez"
|
||||||
|
"org.freedesktop.Avahi"
|
||||||
|
"org.freedesktop.UPower"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
config = {
|
||||||
talk = [
|
talk = [
|
||||||
"org.freedesktop.DBus"
|
"org.freedesktop.DBus"
|
||||||
"org.freedesktop.portal.*"
|
|
||||||
"org.freedesktop.FileManager1"
|
"org.freedesktop.FileManager1"
|
||||||
"org.freedesktop.Notifications"
|
"org.freedesktop.Notifications"
|
||||||
"org.freedesktop.ScreenSaver"
|
"org.freedesktop.ScreenSaver"
|
||||||
|
"org.freedesktop.secrets"
|
||||||
|
"org.kde.kwalletd5"
|
||||||
|
"org.kde.kwalletd6"
|
||||||
];
|
];
|
||||||
own = [
|
own = [
|
||||||
"org.chromium.Chromium"
|
"org.chromium.Chromium.*"
|
||||||
|
"org.mpris.MediaPlayer2.org.chromium.Chromium.*"
|
||||||
"org.mpris.MediaPlayer2.chromium.*"
|
"org.mpris.MediaPlayer2.chromium.*"
|
||||||
];
|
];
|
||||||
|
call = {
|
||||||
|
"org.freedesktop.portal.*" = "*";
|
||||||
|
};
|
||||||
|
broadcast = {
|
||||||
|
"org.freedesktop.portal.*" = "@/org/freedesktop/portal/*";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
|
@ -143,6 +161,8 @@ This adds the `environment.fortify` option:
|
||||||
|
|
||||||
* `dbus.config`, D-Bus proxy custom configuration.
|
* `dbus.config`, D-Bus proxy custom configuration.
|
||||||
|
|
||||||
|
* `dbus.configSystem`, D-Bus system bus custom configuration, null to disable.
|
||||||
|
|
||||||
* `dbus.id`, D-Bus application id, has no effect if `dbus.config` is set.
|
* `dbus.id`, D-Bus application id, has no effect if `dbus.config` is set.
|
||||||
|
|
||||||
* `dbus.mpris`, whether to enable MPRIS defaults, has no effect if `dbus.config` is set.
|
* `dbus.mpris`, whether to enable MPRIS defaults, has no effect if `dbus.config` is set.
|
||||||
|
|
Loading…
Reference in New Issue