about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorPol Dellaiera <pol.dellaiera@protonmail.com>2024-03-24 15:29:56 +0100
committerGitHub <noreply@github.com>2024-03-24 15:29:56 +0100
commit8fbbaead0930a45acc0cd81edf0ef6d2e2480550 (patch)
tree056dd17536e9235f131f8239ec6e2df88adfe2e7 /nixos
parentecdfac0610113ca27a0b6d1ee5c567a0ceefa70a (diff)
parent646dbae9715bc10abc38f67228bb7df8bf9a9e0c (diff)
Merge pull request #295584 from blakesmith/backport_295199
[Backport release-23.11] gotosocial: 0.14.1 -> 0.14.2
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 ];