wsl-apps added

This commit is contained in:
2025-08-05 18:28:42 +03:00
parent af49875f2a
commit f52eb4e005
3 changed files with 28 additions and 7 deletions
+23
View File
@@ -0,0 +1,23 @@
{
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
];
}