nix-config/modules/wiki.nix
Oliver Davies 630ebed658
All checks were successful
/ check (push) Successful in 1m30s
Rename wiki to notes
2025-09-30 22:56:22 +01:00

7 lines
160 B
Nix

{
flake.modules.homeManager.base =
{ config, ...}:
{
home.sessionVariables.NOTES_DIRECTORY = "${config.xdg.userDirs.documents}/notes";
};
}