From 26ec7081d647a51d63ac0695ad43758178f6962a Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Sun, 8 May 2022 21:43:37 +0200 Subject: [PATCH] nixos/usbrelayd: set myself as module maintainer I forgot setting that when creating the module. --- nixos/modules/services/hardware/usbrelayd.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos/modules/services/hardware/usbrelayd.nix b/nixos/modules/services/hardware/usbrelayd.nix index a0d3f15f684..2cee4e1ff7e 100644 --- a/nixos/modules/services/hardware/usbrelayd.nix +++ b/nixos/modules/services/hardware/usbrelayd.nix @@ -40,4 +40,8 @@ in }; users.groups.usbrelay = { }; }; + + meta = { + maintainers = with lib.maintainers; [ wentasah ]; + }; }