1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-07 13:53:27 +02:00
home-manager/tests/modules/services/swaync/swaync.nix
Yomi Ikuru 5632659886
swaync: add module
Co-authored-by: Ryan Horiguchi <rhoriguchi@users.noreply.github.com>
2024-04-30 00:16:28 +02:00

36 lines
848 B
Nix

{ config, ... }:
{
services.swaync = {
enable = true;
package = config.lib.test.mkStubPackage {
name = "swaync";
outPath = "@swaync@";
};
};
nmt.script = ''
assertFileContent \
home-files/.config/systemd/user/swaync.service \
${
builtins.toFile "swaync.service" ''
[Install]
WantedBy=graphical-session.target
[Service]
BusName=org.freedesktop.Notifications
ExecStart=@swaync@/bin/swaync
Restart=on-failure
Type=dbus
[Unit]
After=graphical-session-pre.target
ConditionEnvironment=WAYLAND_DISPLAY
Description=Swaync notification daemon
Documentation=https://github.com/ErikReider/SwayNotificationCenter
PartOf=graphical-session.target
''
}
'';
}