summary refs log tree commit diff stats
path: root/system/services/etebase/default.nix
blob: ee1dce514ad0a2c41219e2c273caae7f1ea0f99b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{config, ...}: {
  services.etebase-server = {
    enable = true;
    port = 8001;
    settings = {
      global.secret_file = "${config.age.secrets.etebase-server.path}";
      allowed_hosts.allowed_host1 = "0.0.0.0";
    };
  };
}