mirror of
https://github.com/nix-community/home-manager
synced 2025-01-12 12:09:49 +01:00
17 lines
315 B
Nix
17 lines
315 B
Nix
{ ... }:
|
|
|
|
{
|
|
config = {
|
|
services.copyq = {
|
|
enable = true;
|
|
systemdTarget = "sway-session.target";
|
|
};
|
|
|
|
test.stubs.copyq = { };
|
|
|
|
nmt.script = ''
|
|
serviceFile=home-files/.config/systemd/user/copyq.service
|
|
assertFileContent $serviceFile ${./basic-expected.service}
|
|
'';
|
|
};
|
|
}
|