diff --git a/flake.nix b/flake.nix index 5d49436..b7e0d43 100644 --- a/flake.nix +++ b/flake.nix @@ -143,6 +143,7 @@ modules = [ overlays-module ./hosts/amy/configuration.nix + ./roles/conduit.nix ./roles/coredns ./roles/iceshrimp.nix ./roles/podman.nix diff --git a/roles/conduit.nix b/roles/conduit.nix new file mode 100644 index 0000000..5197e99 --- /dev/null +++ b/roles/conduit.nix @@ -0,0 +1,13 @@ +{ pkgs, ... }: { + services.matrix-conduit = { + enable = true; + settings = { + global = { + server_name = "shorks.gay"; + database_backend = "rocksdb"; + allow_check_for_updates = true; + address = "::"; + }; + }; + }; +}