diff options
Diffstat (limited to 'system/services/etebase')
-rw-r--r-- | system/services/etebase/default.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/system/services/etebase/default.nix b/system/services/etebase/default.nix new file mode 100644 index 0000000..ee1dce5 --- /dev/null +++ b/system/services/etebase/default.nix @@ -0,0 +1,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"; + }; + }; +} |