Add emanote

This commit is contained in:
Fabian Hauser 2024-07-22 20:38:57 +02:00
parent c9a8b5391a
commit 816f8ae9d3
4 changed files with 603 additions and 31 deletions

View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
{
services.emanote = {
enable = true;
# host = "127.0.0.1"; # default listen address is 127.0.0.1
# port = 8080; # default http port is 7000
notes = [
"/home/fhauser/shares/cloud.qo.is/Notes"
];
# package = emanote.packages.${builtins.currentSystem}.default;
};
}