nixos-config/user/syncthing.nix

9 lines
175 B
Nix
Raw Normal View History

2022-10-24 20:31:23 -03:00
{ config, pkgs, lib, inputs, ... }:
let inherit (pkgs.uservars) key theme color accent font;
2022-10-24 20:31:23 -03:00
in {
services.syncthing = {
enable = true;
2022-10-31 13:31:25 -03:00
# tray.enable = true;
2022-10-24 20:31:23 -03:00
};
}