aboutsummaryrefslogtreecommitdiff
path: root/nixos/.flake/home/services/syncthing.nix.org
blob: 42dbf50a1495928f163536e971bb7c346e239fb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#+title: Syncthing Configuration

Enable Syncthing service.
#+begin_src nix :tangle ~/.flake/home/services/syncthing.nix :mkdirp yes
{ config, pkgs, ... }:

{
  services.syncthing = {
    enable = true;
  };
}
#+end_src