nixos-config/user/syncthing.nix
2022-10-24 21:47:21 -03:00

9 lines
182 B
Nix

{ config, pkgs, lib, inputs, ... }:
let inherit (import ./variables.nix) key theme color accent font;
in {
services.syncthing = {
enable = true;
tray.enable = true;
};
}