mirror of
https://github.com/srid/nixos-config.git
synced 2026-05-11 17:36:07 +08:00
Add syncthing
This commit is contained in:
parent
496ad1ef10
commit
1597e18d9f
2 changed files with 22 additions and 0 deletions
20
modules/home/all/syncthing.nix
Normal file
20
modules/home/all/syncthing.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
services.syncthing = {
|
||||
enable = true;
|
||||
|
||||
# Optional: Configure settings
|
||||
settings = {
|
||||
gui = {
|
||||
theme = "dark";
|
||||
insecureAdminAccess = false;
|
||||
};
|
||||
options = {
|
||||
urAccepted = -1; # Disable usage reporting
|
||||
crashReportingEnabled = false;
|
||||
announceEnabled = true;
|
||||
localAnnounceEnabled = true;
|
||||
relaysEnabled = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -17,5 +17,7 @@
|
|||
./all/juspay.nix
|
||||
|
||||
./all/_1password.nix
|
||||
|
||||
./all/syncthing.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue