nixos/home/common/optional/syncthing.nix

12 lines
125 B
Nix
Raw Normal View History

2024-05-24 21:23:56 +01:00
{ config, ... }:
let
user = config.home.username;
in
{
services = {
syncthing = {
enable = true;
};
};
}