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