dotfiles/home-modules/applications/emanote.nix

17 lines
224 B
Nix

{
inputs,
...
}:
{
imports = [
inputs.emanote.homeManagerModule
];
services.emanote = {
enable = true;
host = "127.0.0.1";
port = 7000;
notes = [
"/home/fhauser/cloud/Notes"
];
};
}