c6444ecc3c
GitOrigin-RevId: 51e44a13acea71b36245e8bd8c7db53e0a3e61ee
17 lines
267 B
Nix
17 lines
267 B
Nix
{ ... }:
|
|
|
|
{
|
|
services.cliphist = {
|
|
enable = true;
|
|
systemdTarget = "sway-session.target";
|
|
};
|
|
|
|
test.stubs = {
|
|
cliphist = { };
|
|
wl-clipboard = { };
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/systemd/user/cliphist.service
|
|
'';
|
|
}
|