feat: enable Syncthing service in home configuration
- Added `services.syncthing` with default settings. - Simplified imports by removing unused bindings.
This commit is contained in:
parent
4cb03eb58f
commit
f96360225b
|
@ -1,8 +1,6 @@
|
|||
{
|
||||
lib,
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
{ pkgs
|
||||
, config
|
||||
, ...
|
||||
}:
|
||||
{
|
||||
home = {
|
||||
|
@ -11,6 +9,12 @@
|
|||
stateVersion = "23.11"; # Please read the comment before changing.
|
||||
};
|
||||
|
||||
services.syncthing = {
|
||||
enable = true;
|
||||
# overrideFolders = false;
|
||||
# overrideDevices = false;
|
||||
};
|
||||
|
||||
# programs.ssh.extraConfig = ''
|
||||
# #UseKeychain yes
|
||||
# #AddKeysToAgent yes
|
||||
|
|
Loading…
Reference in a new issue