12 lines
181 B
Nix
12 lines
181 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
services.syncthing = {
|
|
enable = true;
|
|
extraOptions = [
|
|
"--gui-address=:8385"
|
|
"--home=/home/qenya/state/syncthing"
|
|
];
|
|
};
|
|
}
|