nixos-config/configurations/syncthing.nix
2021-01-06 16:03:32 +01:00

11 lines
227 B
Nix

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