mirror of
https://github.com/nix-community/home-manager
synced 2024-11-26 22:50:39 +00:00
parent
baea46c5ac
commit
3886f8db33
1 changed files with 5 additions and 2 deletions
|
@ -36,10 +36,13 @@ in {
|
|||
systemd.user.services.pulseeffects = {
|
||||
Unit = {
|
||||
Description = "Pulseeffects daemon";
|
||||
Requires = [ "pulseaudio.service" "dbus.service" ];
|
||||
After = [ "graphical-session.target" ];
|
||||
Requires = [ "dbus.service" ];
|
||||
After = [ "graphical-session-pre.target" ];
|
||||
PartOf = [ "graphical-session.target" "pulseaudio.service" ];
|
||||
};
|
||||
|
||||
Install = { WantedBy = [ "graphical-session.target" ]; };
|
||||
|
||||
Service = {
|
||||
ExecStart =
|
||||
"${pkgs.pulseeffects}/bin/pulseeffects --gapplication-service ${presetOpts}";
|
||||
|
|
Loading…
Reference in a new issue