mirror of
https://github.com/nix-community/home-manager
synced 2024-11-27 13:39:46 +01:00
17 lines
261 B
Nix
17 lines
261 B
Nix
{ ... }:
|
|
|
|
{
|
|
services.clipse = {
|
|
enable = true;
|
|
systemdTarget = "sway-session.target";
|
|
};
|
|
|
|
test.stubs = {
|
|
clipse = { };
|
|
wl-clipboard = { };
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/systemd/user/clipse.service
|
|
'';
|
|
}
|