From b423a24cc45811e99b34e52bf4d9e77623388689 Mon Sep 17 00:00:00 2001 From: Anne Douwe Bouma Date: Mon, 29 Jun 2026 12:17:10 +0200 Subject: [PATCH 1/2] maintainers: add anned20 Signed-off-by: Anne Douwe Bouma --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 46b81388b25a..5d95c9e43e5e 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -1907,6 +1907,12 @@ githubId = 81317317; name = "Anna Aurora"; }; + anned20 = { + email = "annedouwe@bouma.tech"; + github = "anned20"; + githubId = 6921250; + name = "Anne Douwe Bouma"; + }; anninzy = { github = "anninzy"; githubId = 143312793; From 4bcda5ed9e9c3daee9a89446d45b9bf117a445f7 Mon Sep 17 00:00:00 2001 From: Anne Douwe Bouma Date: Mon, 29 Jun 2026 12:17:33 +0200 Subject: [PATCH 2/2] tmuxPlugins.tmux-tpad: init at v0.3.0 Add tmux-tpad plugin (v0.3.0) to pkgs/misc/tmux-plugins. Fetches from Subbeh/tmux-tpad@v0.3.0 with the provided sha256. Provides rtpFilePath "tpad.tmux" and metadata including homepage, description, MIT license, Unix platforms, and maintainer anned20. --- pkgs/misc/tmux-plugins/default.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/misc/tmux-plugins/default.nix b/pkgs/misc/tmux-plugins/default.nix index c4ae37f164e1..880c4d7f04e5 100644 --- a/pkgs/misc/tmux-plugins/default.nix +++ b/pkgs/misc/tmux-plugins/default.nix @@ -1363,6 +1363,25 @@ in }; }; + tmux-tpad = mkTmuxPlugin { + pluginName = "tmux-tpad"; + rtpFilePath = "tpad.tmux"; + version = "0.3.0"; + src = fetchFromGitHub { + owner = "Subbeh"; + repo = "tmux-tpad"; + rev = "v0.3.0"; + hash = "sha256-w1eNg6n5JEWcKT7hCr3nFPe01kW3PwGBx8sdtfFojvk="; + }; + meta = { + homepage = "https://github.com/Subbeh/tmux-tpad"; + description = "Tmux scratchpad plugin"; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ anned20 ]; + }; + }; + tmux-window-name = mkTmuxPlugin { pluginName = "tmux-window-name"; version = "2024-03-08";