dotfiles/home/fhauser/applications/emanote.nix
2024-09-26 16:43:28 +03:00

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"
];
};
}