This commit is contained in:
2026-01-19 15:47:20 +03:00
parent c2dd58e9e4
commit 299f8592c2
3 changed files with 37 additions and 5 deletions
+32
View File
@@ -0,0 +1,32 @@
{
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 = [
];
}