mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
21 lines
545 B
Nix
21 lines
545 B
Nix
{ 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
|
|
'';
|
|
};
|
|
}
|