11 lines
125 B
Nix
11 lines
125 B
Nix
{ config, ... }:
|
|
let
|
|
user = config.home.username;
|
|
in
|
|
{
|
|
services = {
|
|
syncthing = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|