1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00
home-manager/tests/modules/services/clipman/clipman-sway-session-target.nix
2022-12-28 23:02:08 +01:00

21 lines
392 B
Nix

{ ... }:
{
home.stateVersion = "21.11";
services.clipman = {
enable = true;
systemdTarget = "sway-session.target";
};
test.stubs = {
clipman = { };
wl-clipboard = { };
};
nmt.script = ''
serviceFile=$(normalizeStorePaths home-files/.config/systemd/user/clipman.service)
assertFileContent "$serviceFile" ${./clipman-sway-session-target.service}
'';
}