13 lines
319 B
Nix
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;
|
|
};
|
|
}
|