9 lines
182 B
Nix
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;
|
|
};
|
|
}
|