8 lines
158 B
Nix
8 lines
158 B
Nix
|
{
|
||
|
flake.modules.homeManager.base =
|
||
|
{ config, ...}:
|
||
|
{
|
||
|
home.sessionVariables.WIKI_DIRECTORY = "${config.xdg.userDirs.documents}/wiki";
|
||
|
};
|
||
|
}
|