This commit is contained in:
2025-08-07 01:39:26 +03:00
parent 09ce473994
commit 185d6e22b4
16 changed files with 16 additions and 39 deletions
+28
View File
@@ -0,0 +1,28 @@
{
config,
pkgs,
xlib,
...
}:
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";
};
};
};
home.packages = [
pkgs.gramps
];
}