1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-14 04:51:08 +01:00

syncthing: add Darwin support

This commit is contained in:
midchildan 2023-02-09 01:59:38 +09:00 committed by Robert Helgesson
parent 2f8d24b7f5
commit 885a504f80
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89
10 changed files with 85 additions and 27 deletions

View file

@ -0,0 +1,21 @@
{ config, lib, pkgs, ... }:
with lib;
{
config = {
services.syncthing.tray.enable = true;
nixpkgs.overlays = [
(self: super: {
syncthingtray-minimal =
pkgs.runCommandLocal "syncthingtray" { pname = "syncthingtray"; }
"mkdir $out";
})
];
nmt.script = ''
assertFileExists home-files/.config/systemd/user/syncthingtray.service
'';
};
}