1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-06 21:33:28 +02:00
home-manager/tests/modules/services/swayosd/swayosd.nix
2023-07-08 12:09:09 +02:00

36 lines
803 B
Nix

{ config, ... }:
{
services.swayosd = {
enable = true;
package = config.lib.test.mkStubPackage {
name = "swayosd";
outPath = "@swayosd@";
};
maxVolume = 10;
};
nmt.script = ''
assertFileContent \
home-files/.config/systemd/user/swayosd.service \
${
builtins.toFile "swayosd.service" ''
[Install]
WantedBy=graphical-session.target
[Service]
ExecStart=@swayosd@/bin/swayosd --max-volume 10
Restart=always
Type=simple
[Unit]
After=graphical-session.target
ConditionEnvironment=WAYLAND_DISPLAY
Description=Volume/backlight OSD indicator
Documentation=man:swayosd(1)
PartOf=graphical-session.target
''
}
'';
}