mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 13:43:56 -05:00
27 lines
610 B
Nix
27 lines
610 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: let
|
||
|
cfg = config.ar.home;
|
||
|
in {
|
||
|
config = lib.mkIf cfg.services.pipewire-inhibit.enable {
|
||
|
systemd.user.services.pipewire-inhibit-idle = {
|
||
|
Unit = {
|
||
|
After = "graphical-session.target";
|
||
|
Description = "inhibit idle when audio is playing with Pipewire.";
|
||
|
PartOf = "graphical-session.target";
|
||
|
};
|
||
|
|
||
|
Service = {
|
||
|
ExecStart = lib.getExe pkgs.wayland-pipewire-idle-inhibit;
|
||
|
Restart = "on-failure";
|
||
|
RestartSec = 5;
|
||
|
};
|
||
|
|
||
|
Install.WantedBy = ["hyprland-session.target" "sway-session.target"];
|
||
|
};
|
||
|
};
|
||
|
}
|