dotfiles/home/fhauser/applications/emanote.nix
2024-07-22 20:42:30 +02:00

13 lines
319 B
Nix

{ 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;
};
}