1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2025-01-11 19:49:49 +01:00
home-manager/tests/modules/services/copyq/dont-force-x-configuration.nix
2024-12-28 11:16:56 +01:00

17 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}
'';
};
}