nixos-config/configurations/syncthing.nix
2020-09-28 11:23:10 +02:00

11 lines
228 B
Nix

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