nixos-config/user/syncthing.nix

9 lines
182 B
Nix
Raw Normal View History

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