summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/misc/sourcehut/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/misc/sourcehut/default.nix')
-rw-r--r--nixos/modules/services/misc/sourcehut/default.nix15
1 files changed, 5 insertions, 10 deletions
diff --git a/nixos/modules/services/misc/sourcehut/default.nix b/nixos/modules/services/misc/sourcehut/default.nix
index abe2370483c6..293ab4ada841 100644
--- a/nixos/modules/services/misc/sourcehut/default.nix
+++ b/nixos/modules/services/misc/sourcehut/default.nix
@@ -25,7 +25,7 @@ let
|| head srvMatch == srv # Include sections for the service being configured
then v
# Enable Web links and integrations between services.
- else if tail srvMatch == [ null ] && elem (head srvMatch) cfg.services
+ else if tail srvMatch == [ null ] && cfg.${head srvMatch}.enable
then {
inherit (v) origin;
# mansrht crashes without it
@@ -120,15 +120,6 @@ in
and account management services
'');
- services = mkOption {
- type = with types; listOf (enum
- [ "builds" "git" "hg" "hub" "lists" "man" "meta" "pages" "paste" "todo" ]);
- defaultText = "locally enabled services";
- description = lib.mdDoc ''
- Services that may be displayed as links in the title bar of the Web interface.
- '';
- };
-
listenAddress = mkOption {
type = types.str;
default = "localhost";
@@ -1371,6 +1362,10 @@ in
dispatch is deprecated. See https://sourcehut.org/blog/2022-08-01-dispatch-deprecation-plans/
for more information.
'')
+
+ (mkRemovedOptionModule [ "services" "sourcehut" "services"] ''
+ This option was removed in favor of individual <service>.enable flags.
+ '')
];
meta.doc = ./default.md;