Files
nixos/home/apps/syncthing.nix
T
2026-01-19 15:47:20 +03:00

33 lines
555 B
Nix

{
config,
pkgs,
xlib,
inputs,
...
}:
# let
# grampsPath = "${xlib.dirs.wsl-storage}/gramps";
# in
{
# xdg = {
# configFile = {
# "grampsConfig" = {
# source = config.lib.file.mkOutOfStoreSymlink grampsPath;
# target = "gramps";
# };
# };
# dataFile = {
# "grampsData" = {
# source = config.lib.file.mkOutOfStoreSymlink grampsPath;
# target = "gramps";
# };
# };
# };
services.syncthing = {
enable = true;
tray.enable = true;
};
home.packages = [
];
}