9 lines
175 B
Nix
9 lines
175 B
Nix
{ config, pkgs, lib, inputs, ... }:
|
|
let inherit (pkgs.uservars) key theme color accent font;
|
|
in {
|
|
services.syncthing = {
|
|
enable = true;
|
|
# tray.enable = true;
|
|
};
|
|
}
|