Gitiles
Code Review
Sign In
git.clicks.codes
/
Infra
/
NixFiles
/
bdc2345acae7c87fd97cb37165b2a3609f63a86e
/
.
/
modules
/
syncthing.nix
blob: 77e98df84b4eeedb770dea6b3615ad839d25b38f [
file
] [
log
] [
blame
]
{
pkgs
,
...
}:
{
environment
.
systemPackages
=
with
pkgs
;
[
syncthing
];
services
.
syncthing
.
enable
=
true
;
services
.
syncthing
.
openDefaultPorts
=
true
;
services
.
syncthing
.
extraOptions
.
gui
=
{
user
=
"admin"
;
password
=
"password"
;
};
}