1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-07 22:03:27 +02:00
home-manager/tests/modules/services/syncthing/linux/tray-as-bool-triggers-warning.nix
2023-03-25 13:09:55 +01:00

20 lines
476 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
services.syncthing.tray = true;
test.asserts.warnings.expected = [
"Specifying 'services.syncthing.tray' as a boolean is deprecated, set 'services.syncthing.tray.enable' instead. See https://github.com/nix-community/home-manager/pull/1257."
];
test.stubs.syncthingtray-minimal = { };
nmt.script = ''
assertFileExists home-files/.config/systemd/user/syncthingtray.service
'';
};
}