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