We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 43e6d64 + ba11984 commit a361718Copy full SHA for a361718
modules/matrix.nix
@@ -56,7 +56,12 @@ in
56
synapse-admin = {
57
enable = lib.mkEnableOption "" // { description = "Whether to configure synapse-admin to be served at the matrix servers domain under the /admin path."; };
58
59
- package = lib.mkPackageOption pkgs "synapse-admin" { };
+ package = lib.mkPackageOption pkgs "synapse-admin" { } // {
60
+ # TODO: remove after 25.05
61
+ default = pkgs.synapse-admin-etkecc or pkgs.synapse-admin;
62
+ example = "pkgs.synapse-admin-etkecc";
63
+ extraDescription = "If synapse-admin-etkecc exists, that is the default, otherwise synapse-admin.";
64
+ };
65
};
66
67
recommendedDefaults = libS.mkOpinionatedOption "set recommended and secure default settings";
0 commit comments