nixos-config/nixos/machines/chungus/trilium.nix

15 lines
302 B
Nix
Raw Normal View History

2023-05-14 02:59:03 +02:00
{ config, ... }:
{
services.trilium-server = {
enable = true;
dataDir = "/srv/trilium";
instanceName = "chungus";
host = "10.23.42.28";
noAuthentication = true;
#nginx = {
# enable = true;
# hostName = "trilium.${config.networking.hostName}.private";
#};
};
}