mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
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
|
|
'';
|
|
}
|