mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 12:40:44 +03:00
24 lines
350 B
Nix
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
|
|
];
|
|
}
|