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 @@
|
||||||
{
|
{ pkgs
|
||||||
lib,
|
, config
|
||||||
pkgs,
|
, ...
|
||||||
config,
|
|
||||||
...
|
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
home = {
|
home = {
|
||||||
|
@ -11,6 +9,12 @@
|
||||||
stateVersion = "23.11"; # Please read the comment before changing.
|
stateVersion = "23.11"; # Please read the comment before changing.
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.syncthing = {
|
||||||
|
enable = true;
|
||||||
|
# overrideFolders = false;
|
||||||
|
# overrideDevices = false;
|
||||||
|
};
|
||||||
|
|
||||||
# programs.ssh.extraConfig = ''
|
# programs.ssh.extraConfig = ''
|
||||||
# #UseKeychain yes
|
# #UseKeychain yes
|
||||||
# #AddKeysToAgent yes
|
# #AddKeysToAgent yes
|
||||||
|
|
Loading…
Reference in a new issue