14 lines
211 B
Nix
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
|
||
|
'';
|
||
|
};
|
||
|
}
|