Compare commits
No commits in common. "091f8cde16f770de5511c45e6bd17b096758ffea" and "58d12194bb02d872563e745a91c998ed06d2c7ab" have entirely different histories.
091f8cde16
...
58d12194bb
4 changed files with 273 additions and 940 deletions
1198
flake.lock
1198
flake.lock
File diff suppressed because it is too large
Load diff
|
@ -108,7 +108,6 @@
|
||||||
eww.url = "github:elkowar/eww";
|
eww.url = "github:elkowar/eww";
|
||||||
anyrun.url = "github:Kirottu/anyrun";
|
anyrun.url = "github:Kirottu/anyrun";
|
||||||
botoh.url = "git+https://git.flake.sh/notohh/botoh";
|
botoh.url = "git+https://git.flake.sh/notohh/botoh";
|
||||||
conduwuit.url = "github:girlbossceo/conduwuit";
|
|
||||||
deploy-rs = {
|
deploy-rs = {
|
||||||
url = "github:serokell/deploy-rs";
|
url = "github:serokell/deploy-rs";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
|
@ -1,26 +1,20 @@
|
||||||
{inputs, ...}: {
|
_: {
|
||||||
networking.firewall.allowedTCPPorts = [6167 8448];
|
networking.firewall.allowedTCPPorts = [6167 8448];
|
||||||
services.matrix-conduit = {
|
services.matrix-conduit = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = inputs.conduwuit.packages.x86_64-linux.default;
|
|
||||||
settings = {
|
settings = {
|
||||||
global = {
|
global = {
|
||||||
address = "0.0.0.0";
|
address = "0.0.0.0";
|
||||||
server_name = "matrix.flake.sh";
|
server_name = "matrix.flake.sh";
|
||||||
allow_registration = false;
|
allow_registration = true;
|
||||||
allow_federation = true;
|
allow_federation = true;
|
||||||
allow_encryption = true;
|
allow_encryption = true;
|
||||||
log = "info";
|
log = "warn";
|
||||||
max_concurrent_requests = 100;
|
max_concurrent_requests = 100;
|
||||||
max_request_size = 20000000;
|
max_request_size = 20000000;
|
||||||
database_backend = "rocksdb";
|
database_backend = "rocksdb";
|
||||||
enable_lightning_bolt = false;
|
enable_lightning_bolt = false;
|
||||||
trusted_servers = ["matrix.org"];
|
trusted_servers = ["matrix.org"];
|
||||||
url_preview_domain_contains_allowlist = ["*"];
|
|
||||||
well_known = {
|
|
||||||
client = "https://matrix.flake.sh";
|
|
||||||
server = "matrix.flake.sh:443";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
# ./hedgedoc.nix
|
# ./hedgedoc.nix
|
||||||
./grafana.nix
|
./grafana.nix
|
||||||
./vaultwarden.nix
|
./vaultwarden.nix
|
||||||
./conduit.nix
|
# ./conduit.nix
|
||||||
./tailscale.nix
|
./tailscale.nix
|
||||||
./rustlog.nix
|
./rustlog.nix
|
||||||
./wastebin.nix
|
./wastebin.nix
|
||||||
|
|
Loading…
Reference in a new issue