mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-12-12 01:00:43 +01:00
23 lines
431 B
Nix
23 lines
431 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
# Sync files between devices
|
|
#
|
|
# Web interface: http://127.0.0.1:8384/
|
|
|
|
# Alternative: GNOME shell extension
|
|
# Alternative: System service
|
|
# services = {
|
|
# syncthing = {
|
|
# enable = true;
|
|
# user = "yoda";
|
|
# };
|
|
# };
|
|
|
|
# We run Syncthing as user service.
|
|
home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
|
|
services.syncthing = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|