diff options
Diffstat (limited to 'void')
| -rw-r--r-- | void/home.nix | 6 | ||||
| -rwxr-xr-x | void/services/dbus/log/run | 3 | ||||
| -rwxr-xr-x | void/services/dbus/run | 11 | ||||
| -rwxr-xr-x | void/services/pipewire/log/run | 3 | ||||
| -rwxr-xr-x | void/services/pipewire/run | 1 |
5 files changed, 24 insertions, 0 deletions
diff --git a/void/home.nix b/void/home.nix index 50fdb4a..482e31c 100644 --- a/void/home.nix +++ b/void/home.nix @@ -32,13 +32,19 @@ services = { enable = true; + coreServices = ["dbus"]; services = { "pipewire" = { run = "${builtins.readFile ./services/pipewire/run}"; + log = "${builtins.readFile ./services/pipewire/log/run}"; }; "mpd" = { run = "${builtins.readFile ./services/mpd/run}"; }; + "dbus" = { + run = "${builtins.readFile ./services/dbus/run}"; + log = "${builtins.readFile ./services/dbus/log/run}"; + }; }; }; }; diff --git a/void/services/dbus/log/run b/void/services/dbus/log/run new file mode 100755 index 0000000..e19b6ec --- /dev/null +++ b/void/services/dbus/log/run @@ -0,0 +1,3 @@ +#!/bin/sh + +exec vlogger -t dbus-$(id -u) -p daemon diff --git a/void/services/dbus/run b/void/services/dbus/run new file mode 100755 index 0000000..dc7473e --- /dev/null +++ b/void/services/dbus/run @@ -0,0 +1,11 @@ +#!/bin/sh + +[ -r ./conf ] && . ./conf + +: "${DBUS_SESSION_BUS_ADDRESS:=unix:path=/run/user/$(id -u)/bus}" + +if [ -d "$TURNSTILE_ENV_DIR" ]; then + echo "$DBUS_SESSION_BUS_ADDRESS" > "$TURNSTILE_ENV_DIR"/DBUS_SESSION_BUS_ADDRESS +fi + +exec chpst -e "$TURNSTILE_ENV_DIR" dbus-daemon --session --nofork --nopidfile --address="$DBUS_SESSION_BUS_ADDRESS" $OPTS diff --git a/void/services/pipewire/log/run b/void/services/pipewire/log/run new file mode 100755 index 0000000..223169a --- /dev/null +++ b/void/services/pipewire/log/run @@ -0,0 +1,3 @@ +#!/bin/sh + +exec vlogger -t pipewire-$(id -u) -p daemon diff --git a/void/services/pipewire/run b/void/services/pipewire/run index 1de4c3b..e3a5513 100755 --- a/void/services/pipewire/run +++ b/void/services/pipewire/run @@ -1,3 +1,4 @@ #!/bin/sh exec chpst -e "$TURNSTILE_ENV_DIR" pipewire + |