1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-13 04:21:08 +01:00
home-manager/tests/modules/services/swaync/swaync.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

37 lines
965 B
Nix

{ config, ... }:
{
services.swaync = {
enable = true;
package = config.lib.test.mkStubPackage {
name = "swaync";
outPath = "@swaync@";
};
};
nmt.script = ''
serviceFile=home-files/.config/systemd/user/swaync.service
serviceFile=$(normalizeStorePaths $serviceFile)
assertFileContent \
$serviceFile \
${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.target
ConditionEnvironment=WAYLAND_DISPLAY
Description=Swaync notification daemon
Documentation=https://github.com/ErikReider/SwayNotificationCenter
PartOf=graphical-session.target
X-Restart-Triggers=/nix/store/00000000000000000000000000000000-config.json
''}
'';
}