1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-04 20:33:27 +02:00
home-manager/tests/modules/services/cliphist/cliphist-sway-session-target.nix

18 lines
267 B
Nix
Raw Normal View History

2023-10-15 14:03:18 +02:00
{ ... }:
{
services.cliphist = {
enable = true;
systemdTarget = "sway-session.target";
};
test.stubs = {
cliphist = { };
wl-clipboard = { };
};
nmt.script = ''
assertFileExists home-files/.config/systemd/user/cliphist.service
'';
}