nixos-config/configurations/syncthing.nix
2020-11-13 22:40:55 +01:00

11 lines
226 B
Nix

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