mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 17:43:55 -05:00
Aly Raffauf
3663469066
* home: switch hyprland and sway to new swayidle systemd service * home: add swayosd service * home: move swayidle and swayosd to services * home/services: add swayidle and swayosd services * hyprland,sway: don't start swayosd * user playerctld as systemd service * home: run gammastep as service for redShift" * cleanup * home: set swayosd and swayidle as wanted by hyprland and sway * nix fmt * home/services/swayidle: fixed resume command * home/swayidle: fix command syntax * home: better systemd defaults for swayidle and swayosd * home: convert mako to systemd service * home: make wayland-ipewire-idle-inhibit a systemd service * home/waybar: use as systemd service * home: move waybar to services * home/desktop: convert randomWallpaper to systemd service * migrate home options
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"];
|
|
};
|
|
};
|
|
}
|