summary refs log tree commit diff
diff options
context:
space:
mode:
author1000101 <b1000101@pm.me>2020-07-29 12:54:49 +0200
committer1000101 <b1000101@pm.me>2020-07-31 15:53:46 +0200
commitb5d21137f30fda06324c667fcebd2bfb9feeea4e (patch)
tree57ecc95991e06b7315d2c3ae3794aebc2d035843
parent3f922834b8ed953738aa27c3ad855c8731539d2c (diff)
downloadnixpkgs-b5d21137f30fda06324c667fcebd2bfb9feeea4e.tar
nixpkgs-b5d21137f30fda06324c667fcebd2bfb9feeea4e.tar.gz
nixpkgs-b5d21137f30fda06324c667fcebd2bfb9feeea4e.tar.bz2
nixpkgs-b5d21137f30fda06324c667fcebd2bfb9feeea4e.tar.lz
nixpkgs-b5d21137f30fda06324c667fcebd2bfb9feeea4e.tar.xz
nixpkgs-b5d21137f30fda06324c667fcebd2bfb9feeea4e.tar.zst
nixpkgs-b5d21137f30fda06324c667fcebd2bfb9feeea4e.zip
nixos/modules: add myself as maintainer of several services
-rw-r--r--nixos/modules/services/networking/blockbook-frontend.nix3
-rw-r--r--nixos/modules/services/networking/trickster.nix4
-rw-r--r--nixos/modules/services/web-apps/dokuwiki.nix5
3 files changed, 10 insertions, 2 deletions
diff --git a/nixos/modules/services/networking/blockbook-frontend.nix b/nixos/modules/services/networking/blockbook-frontend.nix
index 61938e51e06..f289683cef0 100644
--- a/nixos/modules/services/networking/blockbook-frontend.nix
+++ b/nixos/modules/services/networking/blockbook-frontend.nix
@@ -269,4 +269,7 @@ in
     users.groups = mapAttrs' (instanceName: cfg: (
       nameValuePair "${cfg.group}" { })) eachBlockbook;
   };
+
+  meta.maintainers = with maintainers; [ maintainers."1000101" ];
+
 }
diff --git a/nixos/modules/services/networking/trickster.nix b/nixos/modules/services/networking/trickster.nix
index 8760dd5a938..705204ce49f 100644
--- a/nixos/modules/services/networking/trickster.nix
+++ b/nixos/modules/services/networking/trickster.nix
@@ -106,7 +106,9 @@ in
         Restart = "always";
       };
     };
+  }; 
+
+  meta.maintainers = with maintainers; [ maintainers."1000101" ];
 
-  };  
 }
 
diff --git a/nixos/modules/services/web-apps/dokuwiki.nix b/nixos/modules/services/web-apps/dokuwiki.nix
index 33a828fa2cb..71f01b5a1a9 100644
--- a/nixos/modules/services/web-apps/dokuwiki.nix
+++ b/nixos/modules/services/web-apps/dokuwiki.nix
@@ -2,7 +2,7 @@
 
 let
 
-  inherit (lib) mkEnableOption mkForce mkIf mkMerge mkOption optionalAttrs recursiveUpdate types;
+  inherit (lib) mkEnableOption mkForce mkIf mkMerge mkOption optionalAttrs recursiveUpdate types maintainers;
   inherit (lib) concatMapStringsSep flatten mapAttrs mapAttrs' mapAttrsToList nameValuePair concatMapStringSep;
 
   eachSite = config.services.dokuwiki;
@@ -385,4 +385,7 @@ in
       isSystemUser = true;
     };
   };
+
+  meta.maintainers = with maintainers; [ maintainers."1000101" ];
+
 }