From 8a5e51525d44b1468018c0b0a4c0758bcb533657 Mon Sep 17 00:00:00 2001 From: Luflosi Date: Fri, 15 Apr 2022 21:06:21 +0200 Subject: [PATCH] nixos/ipfs: add Luflosi as maintainer --- nixos/modules/services/network-filesystems/ipfs.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/modules/services/network-filesystems/ipfs.nix b/nixos/modules/services/network-filesystems/ipfs.nix index fe375e6ad19..45fb58e6336 100644 --- a/nixos/modules/services/network-filesystems/ipfs.nix +++ b/nixos/modules/services/network-filesystems/ipfs.nix @@ -315,6 +315,9 @@ in in [ "" "%t/ipfs.sock" ] ++ lib.optional (fromCfg != null) fromCfg; }; + }; + meta = { + maintainers = with lib.maintainers; [ Luflosi ]; }; }