nixos/home/common/optional/syncthing.nix
2024-05-30 21:20:39 +01:00

11 lines
125 B
Nix

{ config, ... }:
let
user = config.home.username;
in
{
services = {
syncthing = {
enable = true;
};
};
}