12 lines
176 B
Nix
12 lines
176 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
services.emanote = {
|
|
enable = true;
|
|
host = "127.0.0.1";
|
|
port = 7000;
|
|
notes = [
|
|
"/home/fhauser/shares/cloud.qo.is/Notes"
|
|
];
|
|
};
|
|
}
|