mirror of
https://github.com/nix-community/home-manager
synced 2025-01-12 03:59:49 +01:00
18 lines
306 B
Nix
18 lines
306 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
services.copyq = {
|
||
|
enable = true;
|
||
|
forceXWayland = false;
|
||
|
};
|
||
|
|
||
|
test.stubs.copyq = { };
|
||
|
|
||
|
nmt.script = ''
|
||
|
serviceFile=home-files/.config/systemd/user/copyq.service
|
||
|
assertFileContent $serviceFile ${./dont-force-x-expected.service}
|
||
|
'';
|
||
|
};
|
||
|
}
|