From 66697e1bd1705fa29d0890745d753e9e34d90f25 Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Thu, 21 Aug 2025 10:18:34 +0200 Subject: [PATCH] portable/service: Reuse meta-maintainers.nix Tested with: nix repl -f . nix-repl> :p nixosTests.php.fpm-modular.config.nodes.machine.system.services.php-fpm.meta.maintainers nix-build -A nixosTests.php.fpm-modular --- nixos/modules/system/service/portable/service.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/nixos/modules/system/service/portable/service.nix b/nixos/modules/system/service/portable/service.nix index 339a99d7a856..a2d86274ec29 100644 --- a/nixos/modules/system/service/portable/service.nix +++ b/nixos/modules/system/service/portable/service.nix @@ -10,6 +10,7 @@ in # https://nixos.org/manual/nixos/unstable/#modular-services _class = "service"; imports = [ + ../../../../../modules/generic/meta-maintainers.nix ../../../misc/assertions.nix ./config-data.nix ]; @@ -43,9 +44,5 @@ in ''; }; }; - # TODO: use https://github.com/NixOS/nixpkgs/pull/431450 - meta = lib.mkOption { - description = "The maintainers of this module. This is currently a placeholder option whose value may not evaluate to anything useful until https://github.com/NixOS/nixpkgs/pull/431450 is available and used here."; - }; }; }