From 68e31282efdb8eb4313b9ee60f0f105549eefb42 Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Wed, 8 Apr 2026 16:50:36 -0400 Subject: [PATCH] chore: remove nix hardened profile docs as the hardened profile will was removed from nixpkgs. See https://github.com/NixOS/nixpkgs/pull/501199 --- docs/deploying/nixos.mdx | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/docs/deploying/nixos.mdx b/docs/deploying/nixos.mdx index f93092931..c6beb41c8 100644 --- a/docs/deploying/nixos.mdx +++ b/docs/deploying/nixos.mdx @@ -80,20 +80,6 @@ Continuwuity exclusively uses RocksDB as its database backend. The system config If you're migrating from Conduit with SQLite, use this [tool to migrate a Conduit SQLite database to RocksDB](https://github.com/ShadowJonathan/conduit_toolbox/). -### jemalloc and hardened profile - -Continuwuity uses jemalloc by default. This may interfere with the [`hardened.nix` profile][hardened.nix] because it uses `scudo` by default. Either disable/hide `scudo` from Continuwuity or disable jemalloc like this: - -```nix -services.matrix-continuwuity = { - enable = true; - package = pkgs.matrix-continuwuity.override { - enableJemalloc = false; - }; - # ... -}; -``` - ## Upgrading from Conduit If you previously used Conduit with the `services.matrix-conduit` module: @@ -130,4 +116,3 @@ server { ``` [lix]: https://lix.systems/ -[hardened.nix]: https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/profiles/hardened.nix