My Nix Configuration

[marvin.services] conduit: update config

pyrox.dev 9b9d4213 cb221252

verified
Changed files
+26 -2
systems
x86_64-linux
marvin
services
+26 -2
systems/x86_64-linux/marvin/services/matrix.nix
···
"matrix.org"
"vector.im"
"catgirl.cloud"
];
address = "0.0.0.0";
-
well_known_client = "https://${d.extUrl}";
-
well_known_server = "${d.extUrl}:443";
};
};
}
···
"matrix.org"
"vector.im"
"catgirl.cloud"
+
"nixos.org"
];
address = "0.0.0.0";
+
well_known = {
+
client = "https://${d.extUrl}";
+
server = "${d.extUrl}:443";
+
};
+
media = {
+
backend = "filesystem";
+
directory_structure = {
+
depth = 2;
+
length = 3;
+
};
+
retention = [
+
{
+
space = "100G";
+
}
+
{
+
scope = "remote";
+
accessed = "30d";
+
created = "90d";
+
}
+
{
+
scope = "thumbnail";
+
space = "1G";
+
}
+
];
+
};
};
};
}