1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-01 02:48:30 +02:00
home-manager/tests/modules/services/syncthing/tray-as-bool-triggers-warning.nix

22 lines
545 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
{
config = {
services.syncthing.tray = true;
nixpkgs.overlays = [
(self: super: { syncthingtray-minimal = pkgs.writeScriptBin "dummy" ""; })
];
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."
];
nmt.script = ''
assertFileExists home-files/.config/systemd/user/syncthingtray.service
'';
};
}