nixos-config/configurations/syncthing.nix
2020-09-27 22:20:24 +02:00

14 lines
264 B
Nix

{ ... }:
{
custom.zfs.homeLinks = [
{ path = ".config/syncthing"; type = "data"; }
{ path = "sync"; type = "data"; }
];
home-manager.users.charlotte = { pkgs, ... }: {
services.syncthing = {
enable = true;
tray = true;
};
};
}