26 lines
552 B
Nix
26 lines
552 B
Nix
{ ... }:
|
|
{
|
|
services = {
|
|
wayland-pipewire-idle-inhibit = {
|
|
enable = true;
|
|
systemdTarget = "sway-session.target";
|
|
settings = {
|
|
verbosity = "INFO";
|
|
media_minimum_duration = 10;
|
|
idle_inhibitor = "wayland";
|
|
# sink_whitelist = [
|
|
# { name = "Starship/Matisse HD Audio Controller Analog Stereo"; }
|
|
# ];
|
|
node_blacklist = [
|
|
{ name = "nov"; }
|
|
];
|
|
};
|
|
};
|
|
gnome-keyring = {
|
|
enable = true;
|
|
};
|
|
ssh-agent = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|