15 lines
324 B
Nix
15 lines
324 B
Nix
|
{ config, pkgs, unstable, ... }:
|
||
|
{
|
||
|
# Enable synthing service and tray
|
||
|
services.syncthing = {
|
||
|
enable = true;
|
||
|
user = "nathan";
|
||
|
configDir = "/home/nathan/.config/syncthing";
|
||
|
};
|
||
|
# Install synthing and syncthing-tray
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
syncthing
|
||
|
unstable.syncthingtray
|
||
|
];
|
||
|
}
|