nix-config/hosts/PW05CH3L/modules/notes.nix

18 lines
340 B
Nix

{
home-manager.users.opdavies =
{ config, pkgs, ... }:
{
xdg = {
enable = true;
userDirs.enable = true;
};
home = {
packages = with pkgs; [ notes ];
sessionVariables = {
NOTES_DIRECTORY = "${config.xdg.userDirs.documents}/wiki/tfw-notes";
};
};
};
}