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.nix
2021-05-18 15:43:17 +01:00

14 lines
211 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
services.syncthing.tray.enable = true;
nmt.script = ''
assertFileExists home-files/.config/systemd/user/syncthingtray.service
'';
};
}