12 lines
223 B
Nix
12 lines
223 B
Nix
{ config, pkgs, inputs, ... }:
|
|
{
|
|
# sync thing
|
|
services.syncthing = {
|
|
enable = true;
|
|
openDefaultPorts = true;
|
|
user = "alex";
|
|
configDir = "/home/alex/.config/syncthing";
|
|
dataDir = "/home/alex";
|
|
};
|
|
}
|