Rename wiki to notes
All checks were successful
/ check (push) Successful in 1m30s

This commit is contained in:
Oliver Davies 2025-09-30 22:56:22 +01:00
parent 3b76d3924d
commit 630ebed658
3 changed files with 3 additions and 3 deletions

View file

@ -28,6 +28,6 @@ in
(withSystem pkgs.system (psArgs: psArgs.config.packages.${name}))
];
home.sessionVariables.TODO_FILE = "${config.home.sessionVariables.WIKI_DIRECTORY}/todo.adoc";
home.sessionVariables.TODO_FILE = "${config.home.sessionVariables.NOTES_DIRECTORY}/todo.adoc";
};
}

View file

@ -32,7 +32,7 @@ in
];
home.sessionVariables = {
ZET_DIRECTORY = "${config.home.sessionVariables.WIKI_DIRECTORY}/zet";
ZET_DIRECTORY = "${config.home.sessionVariables.NOTES_DIRECTORY}/zet";
};
};
}

View file

@ -2,6 +2,6 @@
flake.modules.homeManager.base =
{ config, ...}:
{
home.sessionVariables.WIKI_DIRECTORY = "${config.xdg.userDirs.documents}/wiki";
home.sessionVariables.NOTES_DIRECTORY = "${config.xdg.userDirs.documents}/notes";
};
}