1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-10 02:36:54 +00:00
home-manager/tests/modules/services/cliphist/cliphist-multiple-session-targets.nix

14 lines
418 B
Nix
Raw Normal View History

{
services.cliphist = {
enable = true;
systemdTargets = [ "sway-session.target" "hyprland-session.target" ];
};
nmt.script = ''
assertFileExists home-files/.config/systemd/user/cliphist.service
assertFileExists home-files/.config/systemd/user/sway-session.target.wants/cliphist.service
assertFileExists home-files/.config/systemd/user/hyprland-session.target.wants/cliphist.service
'';
}