Add syncthing

This commit is contained in:
Nathan McCarty 2025-01-09 12:03:03 -05:00
parent bcd0288107
commit faef61c066
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{
config,
lib,
pkgs,
...
}:
{
home.packages = with pkgs; [
];
services.syncthing = {
enable = true;
tray = {
enable = true;
};
};
}