Files
nixos/home/wsl-apps/gramps.nix
T
2025-08-05 18:28:54 +03:00

24 lines
350 B
Nix

{
config,
pkgs,
...
}:
let
grampsSource = "${xlib.dirs.wsl-storage}/gramps";
in
{
xdg = {
enable = true;
autostart.enable = true;
configFile = {
# "gramps" = {
# source = config.lib.file.mkOutOfStoreSymlink grampsPath;
# target = "gramps";
# };
};
};
home.packages = [
pkgs.gramps
];
}