1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2025-01-12 03:59:49 +01:00
home-manager/tests/modules/services/copyq/dont-force-x-configuration.nix

18 lines
306 B
Nix
Raw Normal View History

2024-12-28 11:16:56 +01:00
{ ... }:
{
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}
'';
};
}