1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-10 18:57:22 +00:00
home-manager/tests/modules/services/clipse/clipse-sway-session-target.nix

18 lines
261 B
Nix
Raw Normal View History

{ ... }:
{
services.clipse = {
enable = true;
systemdTarget = "sway-session.target";
};
test.stubs = {
clipse = { };
wl-clipboard = { };
};
nmt.script = ''
assertFileExists home-files/.config/systemd/user/clipse.service
'';
}