nix-config/modules/wiki.nix

8 lines
160 B
Nix
Raw Normal View History

{
flake.modules.homeManager.base =
{ config, ...}:
{
2025-09-30 22:56:22 +01:00
home.sessionVariables.NOTES_DIRECTORY = "${config.xdg.userDirs.documents}/notes";
};
}