about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorBlake Smith <blakesmith0@gmail.com>2024-03-12 21:13:22 -0500
committerBlake Smith <blakesmith0@gmail.com>2024-03-23 07:28:29 -0500
commit318444c2acb799ad4716579ee0a83dd43454392b (patch)
tree700c2c73799c17b265d380d3c08e759e563c7649 /nixos
parent7c920dccffdce83bf990c00dd56ce1acb40347f6 (diff)
nixos/gotosocial: add blakesmith as a maintainer
(cherry picked from commit b0529146b9cb07385b16bd828197d56505ed5ec0)
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/web-apps/gotosocial.nix2
-rw-r--r--nixos/tests/web-apps/gotosocial.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/web-apps/gotosocial.nix b/nixos/modules/services/web-apps/gotosocial.nix
index 9c21719a57590..88ea7d176a03c 100644
--- a/nixos/modules/services/web-apps/gotosocial.nix
+++ b/nixos/modules/services/web-apps/gotosocial.nix
@@ -27,7 +27,7 @@ let
 in
 {
   meta.doc = ./gotosocial.md;
-  meta.maintainers = with lib.maintainers; [ misuzu ];
+  meta.maintainers = with lib.maintainers; [ misuzu blakesmith ];
 
   options.services.gotosocial = {
     enable = lib.mkEnableOption (lib.mdDoc "ActivityPub social network server");
diff --git a/nixos/tests/web-apps/gotosocial.nix b/nixos/tests/web-apps/gotosocial.nix
index 6d279ab63a799..8c4e76b14e3bf 100644
--- a/nixos/tests/web-apps/gotosocial.nix
+++ b/nixos/tests/web-apps/gotosocial.nix
@@ -1,7 +1,7 @@
 { lib, ... }:
 {
   name = "gotosocial";
-  meta.maintainers = with lib.maintainers; [ misuzu ];
+  meta.maintainers = with lib.maintainers; [ misuzu blakesmith ];
 
   nodes.machine = { pkgs, ... }: {
     environment.systemPackages = [ pkgs.jq ];