2025-01-29 12:26:13 -06:00
|
|
|
{ lib, options, ... }:
|
2023-10-15 14:03:18 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
services.cliphist = {
|
|
|
|
enable = true;
|
|
|
|
systemdTarget = "sway-session.target";
|
|
|
|
};
|
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.config/systemd/user/cliphist.service
|
2025-01-29 12:26:13 -06:00
|
|
|
assertFileExists home-files/.config/systemd/user/sway-session.target.wants/cliphist.service
|
2023-10-15 14:03:18 +02:00
|
|
|
'';
|
2025-01-29 12:26:13 -06:00
|
|
|
|
|
|
|
test.asserts.warnings.expected = [
|
|
|
|
"The option `services.cliphist.systemdTarget' defined in ${
|
|
|
|
lib.showFiles options.services.cliphist.systemdTarget.files
|
|
|
|
} has been renamed to `services.cliphist.systemdTargets'."
|
|
|
|
];
|
|
|
|
|
2023-10-15 14:03:18 +02:00
|
|
|
}
|