From 31f49c2d6f3005fa64f54856b8ad6828ea00472a Mon Sep 17 00:00:00 2001 From: ralf Date: Thu, 26 Jun 2025 17:53:05 +0200 Subject: [PATCH 001/116] maintainers: add ralleka --- maintainers/maintainer-list.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 664ee433104b..220d3cfd41f1 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -20833,6 +20833,11 @@ githubId = 104558; name = "Benjamin Saunders"; }; + ralleka = { + name = "RalleKa"; + github = "RalleKa"; + githubId = 46349331; + }; ramblurr = { name = "Casey Link"; email = "nix@caseylink.com"; From bbb383e659d9e46dedcf69335821b899a020d944 Mon Sep 17 00:00:00 2001 From: Qiming Chu Date: Sun, 29 Jun 2025 21:20:26 +0800 Subject: [PATCH 002/116] ieda: 0-unstable-2025-05-30 -> 0-unstable-2025-06-30 Signed-off-by: Qiming Chu --- pkgs/by-name/ie/ieda/package.nix | 30 ++++++++++-------------------- 1 file changed, 10 insertions(+), 20 deletions(-) diff --git a/pkgs/by-name/ie/ieda/package.nix b/pkgs/by-name/ie/ieda/package.nix index 889f015aabfa..9efef4c1c61e 100644 --- a/pkgs/by-name/ie/ieda/package.nix +++ b/pkgs/by-name/ie/ieda/package.nix @@ -2,7 +2,6 @@ lib, stdenv, fetchgit, - fetchFromGitHub, fetchpatch, callPackages, cmake, @@ -24,22 +23,13 @@ onnxruntime, }: let - glog-lock = glog.overrideAttrs (oldAttrs: rec { - version = "0.6.0"; - src = fetchFromGitHub { - owner = "google"; - repo = "glog"; - rev = "v${version}"; - sha256 = "sha256-xqRp9vaauBkKz2CXbh/Z4TWqhaUtqfbsSlbYZR/kW9s="; - }; - }); rootSrc = stdenv.mkDerivation { pname = "iEDA-src"; - version = "2025-05-30"; + version = "2025-06-30"; src = fetchgit { url = "https://gitee.com/oscc-project/iEDA"; - rev = "3096147fcea491c381da2928be6fb5a12c2d97b7"; - sha256 = "sha256-rPkcE+QFMlEuwwJ/QBgyLTXP5lWLQPj5SOlZysJ6WTI="; + rev = "689f172c726c3934d49577f09adb5b09804f11e5"; + sha256 = "sha256-JJePIn+NUScb+3o67vT31BoKHcfBuE9osV4SrcicFds="; }; patches = [ @@ -47,15 +37,15 @@ let # and remove some libs or path that they hard-coded in the source code. # Should be removed after we upstream these changes. (fetchpatch { - url = "https://github.com/Emin017/iEDA/commit/e899b432776010048b558a939ad9ba17452cb44f.patch"; - hash = "sha256-fLKsb/dgbT1mFCWEldFwhyrA1HSkKGMAbAs/IxV9pwM="; + url = "https://github.com/Emin017/iEDA/commit/c17e42a3673afd9c7ace9374f85290a85354bb78.patch"; + hash = "sha256-xa1oSy3OZ5r0TigGywzpVPvpPnA7L6RIcNktfFen4AA="; }) # This patch is to fix the compile error on the newer version of gcc/g++ - # which is caused by some incorrect declarations and usages of the Boost library. + # We remove some forward declarations which are not allowed in newer versions of gcc/g++ # Should be removed after we upstream these changes. (fetchpatch { - url = "https://github.com/Emin017/iEDA/commit/3a2c7e27a5bd349d72b3a7198358cd640c678802.patch"; - hash = "sha256-2YROkQ92jGOJZr+4+LrwRJKxhA39Bypb1xFdo6aftu8="; + url = "https://github.com/Emin017/iEDA/commit/f5464cc40a2c671c5d405f16b509e2fa8d54f7f1.patch"; + hash = "sha256-uVMV/CjkX9oLexHJbQvnEDOET/ZqsEPreI6EQb3Z79s="; }) ]; @@ -76,7 +66,7 @@ let in stdenv.mkDerivation { pname = "iEDA"; - version = "0-unstable-2025-05-30"; + version = "0-unstable-2025-06-30"; src = rootSrc; @@ -107,7 +97,7 @@ stdenv.mkDerivation { rustpkgs.verilog-parser rustpkgs.liberty-parser gtest - glog-lock + glog gflags boost onnxruntime From 0aaa8960cb147a46af8036893d84252b5dfa0f4c Mon Sep 17 00:00:00 2001 From: Anton Tetov Date: Tue, 1 Jul 2025 11:53:54 +0200 Subject: [PATCH 003/116] nixos/vim: assert that both enable and defaultEditor is set --- nixos/modules/programs/vim.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/nixos/modules/programs/vim.nix b/nixos/modules/programs/vim.nix index 80dc3cdd3959..c3efcd0a54dc 100644 --- a/nixos/modules/programs/vim.nix +++ b/nixos/modules/programs/vim.nix @@ -17,10 +17,12 @@ in package = lib.mkPackageOption pkgs "vim" { example = [ "vim-full" ]; }; }; - # TODO: convert it into assert after 24.11 release config = lib.mkIf (cfg.enable || cfg.defaultEditor) { - warnings = lib.mkIf (cfg.defaultEditor && !cfg.enable) [ - "programs.vim.defaultEditor will only work if programs.vim.enable is enabled, which will be enforced after the 24.11 release" + assertions = [ + { + assertion = cfg.defaultEditor -> cfg.enable; + message = "{option}`programs.vim.defaultEditor` requires {option}`programs.vim.enable` to be set to true."; + } ]; environment = { systemPackages = [ cfg.package ]; From 5b2aee74c200064e78776efb41f7dcb06e2d5d7f Mon Sep 17 00:00:00 2001 From: Diogo Correia Date: Mon, 30 Jun 2025 23:20:35 +0100 Subject: [PATCH 004/116] enry: init at 1.3.0 --- pkgs/by-name/en/enry/package.nix | 57 ++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 pkgs/by-name/en/enry/package.nix diff --git a/pkgs/by-name/en/enry/package.nix b/pkgs/by-name/en/enry/package.nix new file mode 100644 index 000000000000..5ca32969b0cb --- /dev/null +++ b/pkgs/by-name/en/enry/package.nix @@ -0,0 +1,57 @@ +{ + lib, + buildGoModule, + fetchFromGitHub, + versionCheckHook, + writeScript, +}: + +let + commitHash = "f10711437bfbb25b15506eb69dde24bb7decd222"; # matches tag release +in +buildGoModule (finalAttrs: { + pname = "enry"; + version = "1.3.0"; + + src = fetchFromGitHub { + owner = "go-enry"; + repo = "enry"; + tag = "v${finalAttrs.version}"; + hash = "sha256-JSYOCdWZnCM4Kq3EFkS7XZ5n0ahkR+A8omI4z1S45z8="; + }; + + vendorHash = "sha256-tUDhpeXlKpo1jnNyk0U3CcXroOlv7lHVUxc1wAnysG4="; + + ldflags = [ + "-X main.version=${finalAttrs.version}" + "-X main.commit=${commitHash}" + ]; + + nativeInstallCheckInputs = [ versionCheckHook ]; + doInstallCheck = true; + + passthru.updateScript = writeScript "update-enry" '' + #!/usr/bin/env nix-shell + #!nix-shell -i bash -p curl jq nix-update + + set -eu -o pipefail + + gh_metadata="$(curl -sS https://api.github.com/repos/go-enry/enry/tags)" + version="$(echo "$gh_metadata" | jq -r '.[] | .name' | sort --version-sort | tail -1)" + commit_hash="$(echo "$gh_metadata" | jq -r --arg ver "$version" '.[] | select(.name == $ver).commit.sha')" + + filename="$(nix-instantiate --eval -E "with import ./. {}; (builtins.unsafeGetAttrPos \"version\" enry).file" | tr -d '"')" + sed -i "s/commitHash = \"[^\"]*\"/commitHash = \"$commit_hash\"/" $filename + + nix-update enry + ''; + + meta = { + description = "Programming language detector based on go-enry/go-enry/v2 library"; + mainProgram = "enry"; + homepage = "https://github.com/go-enry/enry"; + changelog = "https://github.com/go-enry/enry/releases/tag/v${finalAttrs.version}"; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dvcorreia ]; + }; +}) From 58b2008d2f593373ea242d8ec1e26514dcd527aa Mon Sep 17 00:00:00 2001 From: bricked Date: Mon, 7 Jul 2025 00:18:39 +0200 Subject: [PATCH 005/116] firefoxpwa: add firefoxRuntime parameter Replaces `firefox-unwrapped` with the overridable `firefoxRuntime` parameter. This makes it possible to use other runtimes like `librewolf-unwrapped`. Resolves https://github.com/nixos/nixpkgs/issues/344442. --- pkgs/by-name/fi/firefoxpwa/package.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/fi/firefoxpwa/package.nix b/pkgs/by-name/fi/firefoxpwa/package.nix index 42a9d2ea1446..b6a2b0ede03b 100644 --- a/pkgs/by-name/fi/firefoxpwa/package.nix +++ b/pkgs/by-name/fi/firefoxpwa/package.nix @@ -1,5 +1,6 @@ { extraLibs ? [ ], + firefoxRuntime ? firefox-unwrapped, lib, fetchFromGitHub, @@ -85,9 +86,13 @@ rustPlatform.buildRustPackage rec { postInstall = '' # Runtime mkdir -p $out/share/firefoxpwa - cp -Lr ${firefox-unwrapped}/lib/firefox $out/share/firefoxpwa/runtime + cp -Lr ${firefoxRuntime}/lib/${firefoxRuntime.binaryName} $out/share/firefoxpwa/runtime chmod -R +w $out/share/firefoxpwa + if [ "${firefoxRuntime.binaryName}" != "firefox" ]; then + ln $out/share/firefoxpwa/runtime/${firefoxRuntime.binaryName} $out/share/firefoxpwa/runtime/firefox + fi + # UserChrome cp -r userchrome $out/share/firefoxpwa From 72b76af1f2be066001d6efd596eb687555c23dae Mon Sep 17 00:00:00 2001 From: Alden Parker Date: Fri, 13 Jun 2025 16:34:31 -0700 Subject: [PATCH 006/116] asus-wmi-screenpad-ctl: init at 1.0.0 fix vscode: 1.101.1 -> 1.101.2 fix --- .../as/asus-wmi-screenpad-ctl/package.nix | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pkgs/by-name/as/asus-wmi-screenpad-ctl/package.nix diff --git a/pkgs/by-name/as/asus-wmi-screenpad-ctl/package.nix b/pkgs/by-name/as/asus-wmi-screenpad-ctl/package.nix new file mode 100644 index 000000000000..aa1b7241145b --- /dev/null +++ b/pkgs/by-name/as/asus-wmi-screenpad-ctl/package.nix @@ -0,0 +1,33 @@ +{ + lib, + rustPlatform, + fetchFromGitHub, + nix-update-script, +}: +let + version = "1.0.0"; +in +rustPlatform.buildRustPackage { + pname = "asus-wmi-screenpad-ctl"; + inherit version; + + src = fetchFromGitHub { + repo = "asus-wmi-screenpad-ctl"; + owner = "aldenparker"; + tag = "v${version}"; + hash = "sha256-TV61Kh8A7PFJPRONqeCK1xEK2AHfiV/eoZOCL0SZ+5M="; + }; + + cargoHash = "sha256-ZluFoV9TclY6NOB5sHBN+1ht3zovmb4H+q7qT/Ywwmc="; + + passthru.updateScript = nix-update-script { }; + + meta = { + description = "Brightness control program for the asus-wmi-screenpad kernel module"; + mainProgram = "asus-wmi-screenpad-ctl"; + homepage = "https://github.com/aldenparker/asus-wmi-screenpad-ctl"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ aldenparker ]; + platforms = lib.platforms.linux; + }; +} From a4133153f18a921a2b0920629b81ff81217ccd81 Mon Sep 17 00:00:00 2001 From: Sam <30577766+Samasaur1@users.noreply.github.com> Date: Fri, 6 Jun 2025 21:33:18 -0700 Subject: [PATCH 007/116] pdfquery: init at 0.4.3 --- .../python-modules/pdfquery/default.nix | 60 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 62 insertions(+) create mode 100644 pkgs/development/python-modules/pdfquery/default.nix diff --git a/pkgs/development/python-modules/pdfquery/default.nix b/pkgs/development/python-modules/pdfquery/default.nix new file mode 100644 index 000000000000..6c71aef892ba --- /dev/null +++ b/pkgs/development/python-modules/pdfquery/default.nix @@ -0,0 +1,60 @@ +{ + buildPythonPackage, + fetchPypi, + lib, + cssselect, + chardet, + lxml, + pdfminer-six, + pyquery, + roman, + six, + setuptools, +}: + +buildPythonPackage rec { + pname = "pdfquery"; + version = "0.4.3"; + pyproject = true; + + # The latest version is on PyPI but not tagged on GitHub + src = fetchPypi { + inherit pname version; + hash = "sha256-oqKXTLMS/aT1aa3I1jN30l1cY2ckC0p7+xZTksc+Hc4="; + }; + + dependencies = [ + cssselect + chardet + lxml + pdfminer-six + pyquery + roman + + # Not explicitly listed in setup.py; found through trial and error + six + ]; + + build-system = [ + setuptools + ]; + + # Although this package has tests, they aren't runnable with + # `unittestCheckHook` or `pytestCheckHook` because you're meant + # to run the tests with `python setup.py test`, but that's deprecated + # and doesn't work anymore. So there are no runnable tests. + doCheck = false; + + # This runs as a different phase than checkPhase, so still runs + # despite `doCheck = false` + pythonImportsCheck = [ + "pdfquery" + ]; + + meta = { + description = "Concise, friendly PDF scraping using JQuery or XPath syntax"; + homepage = "https://github.com/jcushman/pdfquery"; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.samasaur ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2797bb768dd8..1fd25c4e20a8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11185,6 +11185,8 @@ self: super: with self; { pdfplumber = callPackage ../development/python-modules/pdfplumber { }; + pdfquery = callPackage ../development/python-modules/pdfquery { }; + pdfrw = callPackage ../development/python-modules/pdfrw { }; pdfrw2 = callPackage ../development/python-modules/pdfrw2 { }; From a08205f1733531605d1817ee68a43f601ef27a3d Mon Sep 17 00:00:00 2001 From: Sam <30577766+Samasaur1@users.noreply.github.com> Date: Fri, 6 Jun 2025 21:33:18 -0700 Subject: [PATCH 008/116] ao3downloader: init at 2025.6.1 --- pkgs/by-name/ao/ao3downloader/package.nix | 56 +++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 pkgs/by-name/ao/ao3downloader/package.nix diff --git a/pkgs/by-name/ao/ao3downloader/package.nix b/pkgs/by-name/ao/ao3downloader/package.nix new file mode 100644 index 000000000000..f8ab850e37c2 --- /dev/null +++ b/pkgs/by-name/ao/ao3downloader/package.nix @@ -0,0 +1,56 @@ +{ + lib, + python312Packages, + fetchFromGitHub, +}: + +# ao3downloader explicitly does not support Python 3.13 yet +# https://github.com/nianeyna/ao3downloader/blob/f8399bb8aca276ae7359157b90afd13925c90056/pyproject.toml#L8 +python312Packages.buildPythonApplication rec { + pname = "ao3downloader"; + version = "2025.6.1"; + pyproject = true; + + src = fetchFromGitHub { + owner = "nianeyna"; + repo = "ao3downloader"; + tag = "v${version}"; + hash = "sha256-ukS3uku8OW5nhM2Nr0IxAiG03XfqUn/Xyd0lZDGGkWw="; + }; + + build-system = with python312Packages; [ + hatchling + ]; + + dependencies = with python312Packages; [ + beautifulsoup4 + mobi + pdfquery + requests + six + tqdm + ]; + + pythonRelaxDeps = [ + "requests" + ]; + + pythonImportsCheck = [ + "ao3downloader" + ]; + + nativeCheckInputs = with python312Packages; [ + pytestCheckHook + syrupy + pythonImportsCheckHook + ]; + + meta = { + description = "Utility for downloading fanfiction in bulk from the Archive of Our Own"; + changelog = "https://github.com/nianeyna/ao3downloader/releases/tag/v${version}"; + mainProgram = "ao3downloader"; + homepage = "https://nianeyna.dev/ao3downloader"; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.samasaur ]; + }; +} From 780b0fcd9a372a448bdea76b66e24c8903c33bc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Hamb=C3=BCchen?= Date: Wed, 9 Jul 2025 02:34:36 +0200 Subject: [PATCH 009/116] pyhon3Packages.lazrs: init at 0.7.0 --- .../python-modules/lazrs/default.nix | 41 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 43 insertions(+) create mode 100644 pkgs/development/python-modules/lazrs/default.nix diff --git a/pkgs/development/python-modules/lazrs/default.nix b/pkgs/development/python-modules/lazrs/default.nix new file mode 100644 index 000000000000..f0c24b250675 --- /dev/null +++ b/pkgs/development/python-modules/lazrs/default.nix @@ -0,0 +1,41 @@ +{ + lib, + buildPythonPackage, + fetchPypi, + rustPlatform, +}: +buildPythonPackage rec { + pname = "lazrs"; + version = "0.7.0"; + + format = "pyproject"; + + src = fetchPypi { + inherit pname version; + hash = "sha256-UxkbNRwdn6RfdEcWmDhL9CveFFmTCWRfudTDU/D7fyQ="; + }; + + nativeBuildInputs = [ + rustPlatform.cargoSetupHook + rustPlatform.maturinBuildHook + ]; + + cargoDeps = rustPlatform.fetchCargoVendor { + inherit src; + inherit pname version; + hash = "sha256-GVb34eznC5/TA/SpvDq9uJ9M3nUTfx0KyfRFd4WUyCI="; + }; + + pythonImportsCheck = [ "lazrs" ]; + + meta = { + description = "Python bindings for laz-rs"; + homepage = "https://github.com/laz-rs/laz-rs-python"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ + nh2 + chpatrick + ]; + teams = [ lib.teams.geospatial ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 98a11e205415..55a970b938fc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -7875,6 +7875,8 @@ self: super: with self; { lazr-uri = callPackage ../development/python-modules/lazr-uri { }; + lazrs = callPackage ../development/python-modules/lazrs { }; + lazy = callPackage ../development/python-modules/lazy { }; lazy-imports = callPackage ../development/python-modules/lazy-imports { }; From 9d672390889aff93743682a5cf5596c571cf1204 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Hamb=C3=BCchen?= Date: Wed, 9 Jul 2025 02:50:56 +0200 Subject: [PATCH 010/116] python3Packages.laspy: 2.5.3 -> 2.6.1 --- pkgs/development/python-modules/laspy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/laspy/default.nix b/pkgs/development/python-modules/laspy/default.nix index 9e68b13137f5..44f1978bcc6e 100644 --- a/pkgs/development/python-modules/laspy/default.nix +++ b/pkgs/development/python-modules/laspy/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "laspy"; - version = "2.5.4"; + version = "2.6.1"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-7r2/M3mvvAsk5+SBL6xWe/+IDR6FH3AXXSI3Wq7N9+E="; + hash = "sha256-zpy5oYUosqK5hVg99ApN6mjN2nmV5H5LALbUjfDojao="; }; nativeBuildInputs = [ setuptools ]; From 08160185c29d6e9864541be26655ea40a223cd4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Hamb=C3=BCchen?= Date: Wed, 9 Jul 2025 02:51:41 +0200 Subject: [PATCH 011/116] python3Packages.laspy: Add fast lazrs backend Requires laspy >= 2.6.0 due to this fix: https://github.com/laspy/laspy/commit/036c37e9e16e912c296147d20ecd6c638d7bac78 Older versions error: laspy.errors.LaspyException: Could not initialize a laz backend: LasZipAppender.__new__() missing 1 required positional argument: 'point_count' --- pkgs/development/python-modules/laspy/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/laspy/default.nix b/pkgs/development/python-modules/laspy/default.nix index 44f1978bcc6e..07211a842228 100644 --- a/pkgs/development/python-modules/laspy/default.nix +++ b/pkgs/development/python-modules/laspy/default.nix @@ -4,6 +4,7 @@ fetchPypi, numpy, laszip, + lazrs, setuptools, pytestCheckHook, pythonOlder, @@ -26,13 +27,17 @@ buildPythonPackage rec { propagatedBuildInputs = [ numpy laszip + lazrs # much faster laz reading, see https://laspy.readthedocs.io/en/latest/installation.html#laz-support ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "laspy" + # `laspy` supports multiple backends and detects them dynamically. + # We check their importability to make sure they are all working. "laszip" + "lazrs" ]; meta = with lib; { From cf6a766055141466fc231db238adb2af4917cb9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Hamb=C3=BCchen?= Date: Wed, 9 Jul 2025 12:47:05 +0200 Subject: [PATCH 012/116] python3Packages.laspy: Add geospatial team maintenance --- pkgs/development/python-modules/laspy/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/laspy/default.nix b/pkgs/development/python-modules/laspy/default.nix index 07211a842228..39057be18dcc 100644 --- a/pkgs/development/python-modules/laspy/default.nix +++ b/pkgs/development/python-modules/laspy/default.nix @@ -47,5 +47,6 @@ buildPythonPackage rec { changelog = "https://github.com/laspy/laspy/blob/${version}/CHANGELOG.md"; license = licenses.bsd2; maintainers = with maintainers; [ matthewcroughan ]; + teams = [ teams.geospatial ]; }; } From 6f7b843d437131dd9bcf1660f748803d560c5906 Mon Sep 17 00:00:00 2001 From: Jason Yundt Date: Sat, 12 Jul 2025 14:26:15 -0400 Subject: [PATCH 013/116] vkquake: add meta.license Source: Related to #43716. --- pkgs/games/quakespasm/vulkan.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/games/quakespasm/vulkan.nix b/pkgs/games/quakespasm/vulkan.nix index 70d3c792b187..0ac338de7e64 100644 --- a/pkgs/games/quakespasm/vulkan.nix +++ b/pkgs/games/quakespasm/vulkan.nix @@ -113,5 +113,6 @@ stdenv.mkDerivation (finalAttrs: { ylh ]; mainProgram = "vkquake"; + license = lib.licenses.gpl2Plus; }; }) From 48742217e289f668910563f35ab7a8ee3f05c7f8 Mon Sep 17 00:00:00 2001 From: ralf Date: Sun, 22 Jun 2025 12:45:56 +0200 Subject: [PATCH 014/116] kardolus-chatgpt-cli: init at 1.8.4 --- .../ka/kardolus-chatgpt-cli/package.nix | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 pkgs/by-name/ka/kardolus-chatgpt-cli/package.nix diff --git a/pkgs/by-name/ka/kardolus-chatgpt-cli/package.nix b/pkgs/by-name/ka/kardolus-chatgpt-cli/package.nix new file mode 100644 index 000000000000..0d3a26965770 --- /dev/null +++ b/pkgs/by-name/ka/kardolus-chatgpt-cli/package.nix @@ -0,0 +1,48 @@ +{ + lib, + buildGoModule, + fetchFromGitHub, + makeWrapper, +}: + +buildGoModule (finalAttrs: { + # "chatgpt-cli" is taken by another package with the same upsteam name. + # To keep "pname" and "package attribute name" identical, the owners name (kardolus) gets prefixed as identifier. + pname = "kardolus-chatgpt-cli"; + version = "1.8.4"; + + src = fetchFromGitHub { + owner = "kardolus"; + repo = "chatgpt-cli"; + rev = "v${finalAttrs.version}"; + hash = "sha256-vr61SrIYun6KUB9u+ZtUmdGO/ks2aQnAMAQ0g6QPaho="; + }; + + vendorHash = null; + # The tests of kardolus/chatgpt-cli require an OpenAI API Key to be present in the environment, + # (e.g. https://github.com/kardolus/chatgpt-cli/blob/v1.8.4/test/contract/contract_test.go#L35) + # which will not be the case in the pipeline. + # Therefore, tests must be skipped. + doCheck = false; + + nativeBuildInputs = [ makeWrapper ]; + postFixup = '' + wrapProgram $out/bin/chatgpt \ + --run "mkdir -p ~/.chatgpt-cli" \ + --set-default CHATGPT_CLI_HISTORY_DIR ~/.chatgpt-cli + ''; + + meta = { + description = "Command-line interface for ChatGPT"; + longDescription = '' + ChatGPT CLI is a versatile tool for interacting with LLMs through OpenAI, Azure, and other popular providers like Perplexity AI and Llama. + It supports prompt files, history tracking, and live data injection via MCP (Model Context Protocol), + making it ideal for both casual users and developers seeking a powerful, customizable GPT experience. + ''; + homepage = "https://github.com/kardolus/chatgpt-cli"; + platforms = lib.platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ralleka ]; + mainProgram = "chatgpt"; + }; +}) From d5bd1419fe7157e73cdd5b5baead1cb649c6a8aa Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Sun, 20 Jul 2025 09:22:34 -0400 Subject: [PATCH 015/116] maintainers: drop arjix Last activity on GitHub was 2021. --- maintainers/maintainer-list.nix | 6 ------ pkgs/by-name/ne/nengo-gui/package.nix | 2 +- pkgs/development/python-modules/nengo/default.nix | 2 +- 3 files changed, 2 insertions(+), 8 deletions(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 2ca9edb79453..c4affc5141c4 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -2059,12 +2059,6 @@ githubId = 10400299; name = "Arjan Schrijver"; }; - arjix = { - email = "arjix@protonmail.com"; - github = "arjix"; - githubId = 62168569; - name = "arjix"; - }; arkivm = { email = "vikram186@gmail.com"; github = "arkivm"; diff --git a/pkgs/by-name/ne/nengo-gui/package.nix b/pkgs/by-name/ne/nengo-gui/package.nix index 21ced9321462..d7b2418a189c 100644 --- a/pkgs/by-name/ne/nengo-gui/package.nix +++ b/pkgs/by-name/ne/nengo-gui/package.nix @@ -26,6 +26,6 @@ python3Packages.buildPythonPackage rec { description = "Nengo interactive visualizer"; homepage = "https://nengo.ai/"; license = licenses.unfreeRedistributable; - maintainers = with maintainers; [ arjix ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/development/python-modules/nengo/default.nix b/pkgs/development/python-modules/nengo/default.nix index 2b0b65637704..010c287e5a1b 100644 --- a/pkgs/development/python-modules/nengo/default.nix +++ b/pkgs/development/python-modules/nengo/default.nix @@ -43,6 +43,6 @@ buildPythonPackage rec { description = "Python library for creating and simulating large-scale brain models"; homepage = "https://nengo.ai/"; license = licenses.unfreeRedistributable; - maintainers = with maintainers; [ arjix ]; + maintainers = with maintainers; [ ]; }; } From 608d1ce62b537851c4bccb3d69200c2019524169 Mon Sep 17 00:00:00 2001 From: Litchi Pi Date: Mon, 21 Jul 2025 17:13:48 +0200 Subject: [PATCH 016/116] mealie: 2.8.0 -> 3.0.1 Signed-off-by: Litchi Pi --- pkgs/by-name/me/mealie/mealie-frontend.nix | 28 ++- pkgs/by-name/me/mealie/package.nix | 235 ++++++++++----------- 2 files changed, 132 insertions(+), 131 deletions(-) diff --git a/pkgs/by-name/me/mealie/mealie-frontend.nix b/pkgs/by-name/me/mealie/mealie-frontend.nix index 5132f564e99a..885f7c4eb0d9 100644 --- a/pkgs/by-name/me/mealie/mealie-frontend.nix +++ b/pkgs/by-name/me/mealie/mealie-frontend.nix @@ -1,40 +1,46 @@ src: version: { lib, + fetchFromGitHub, fetchYarnDeps, - nodejs_20, + dart, + dart-sass, + nodePackages_latest, fixup-yarn-lock, stdenv, yarn, -}: -stdenv.mkDerivation { +}: let + nodejs = nodePackages_latest.nodejs; +in stdenv.mkDerivation { name = "mealie-frontend"; inherit version; src = "${src}/frontend"; yarnOfflineCache = fetchYarnDeps { yarnLock = "${src}/frontend/yarn.lock"; - hash = "sha256-a2kIOQHaMzaMWId6+SSYN+SPQM2Ipa+F1ztFZgo3R6A="; + hash = "sha256-712mc/xksjXgnc0inthxE+ztSDl/4107oXw3vKcZD2g="; }; nativeBuildInputs = [ fixup-yarn-lock - nodejs_20 - (yarn.override { nodejs = nodejs_20; }) + nodejs + (yarn.override { inherit nodejs; }) ]; configurePhase = '' runHook preConfigure + sed -i 's+"@nuxt/fonts",+// NUXT FONTS DISABLED+g' nuxt.config.ts + export HOME=$(mktemp -d) yarn config --offline set yarn-offline-mirror "$yarnOfflineCache" fixup-yarn-lock yarn.lock - # TODO: Remove --ignore-engines once upstream supports nodejs_20+ - # https://github.com/mealie-recipes/mealie/issues/5400 - # https://github.com/mealie-recipes/mealie/pull/5184 - yarn install --frozen-lockfile --offline --no-progress --non-interactive --ignore-engines + yarn install --frozen-lockfile --offline --no-progress --non-interactive patchShebangs node_modules/ + mkdir -p node_modules/sass-embedded/dist/lib/src/vendor/dart-sass + ln -s ${dart-sass}/bin/dart-sass node_modules/sass-embedded/dist/lib/src/vendor/dart-sass/sass + runHook postConfigure ''; @@ -50,7 +56,7 @@ stdenv.mkDerivation { installPhase = '' runHook preInstall - mv dist $out + mv .output/public $out runHook postInstall ''; diff --git a/pkgs/by-name/me/mealie/package.nix b/pkgs/by-name/me/mealie/package.nix index 6a7897f9a79f..2c3111d2725f 100644 --- a/pkgs/by-name/me/mealie/package.nix +++ b/pkgs/by-name/me/mealie/package.nix @@ -11,139 +11,134 @@ }: let - version = "2.8.0"; + version = "3.0.1"; src = fetchFromGitHub { owner = "mealie-recipes"; repo = "mealie"; tag = "v${version}"; - hash = "sha256-0LUT7OdYoOZTdR/UXJO2eL2Afo2Y7GjBPIrjWUt205E="; + hash = "sha256-ev5S/JGj9lYejuKTRMbZ49qqupJpNF5Vc12VFsJPqpc="; }; frontend = callPackage (import ./mealie-frontend.nix src version) { }; pythonpkgs = python3Packages; python = pythonpkgs.python; -in +in pythonpkgs.buildPythonApplication rec { + pname = "mealie"; + inherit version src; + pyproject = true; -pythonpkgs.buildPythonApplication rec { - pname = "mealie"; - inherit version src; - pyproject = true; + build-system = with pythonpkgs; [ poetry-core ]; - build-system = with pythonpkgs; [ poetry-core ]; + nativeBuildInputs = [ makeWrapper ]; - nativeBuildInputs = [ makeWrapper ]; + dontWrapPythonPrograms = true; - dontWrapPythonPrograms = true; + pythonRelaxDeps = true; - pythonRelaxDeps = true; - - dependencies = with pythonpkgs; [ - aiofiles - alembic - aniso8601 - appdirs - apprise - authlib - bcrypt - extruct - fastapi - gunicorn - html2text - httpx - ingredient-parser-nlp - itsdangerous - jinja2 - lxml - openai - orjson - paho-mqtt - pillow - pillow-heif - psycopg2 - pydantic-settings - pyhumps - pyjwt - python-dotenv - python-ldap - python-multipart - python-slugify - pyyaml - rapidfuzz - recipe-scrapers - sqlalchemy - tzdata - uvicorn - ]; - - postPatch = '' - rm -rf dev # Do not need dev scripts & code - - substituteInPlace mealie/__init__.py \ - --replace-fail '__version__ = ' '__version__ = "v${version}" #' - ''; - - postInstall = - let - start_script = writeShellScript "start-mealie" '' - ${lib.getExe pythonpkgs.gunicorn} "$@" -k uvicorn.workers.UvicornWorker mealie.app:app; - ''; - init_db = writeShellScript "init-mealie-db" '' - ${python.interpreter} $OUT/${python.sitePackages}/mealie/db/init_db.py - ''; - in - '' - mkdir -p $out/bin $out/libexec - rm -f $out/bin/* - - makeWrapper ${start_script} $out/bin/mealie \ - --set PYTHONPATH "$out/${python.sitePackages}:${pythonpkgs.makePythonPath dependencies}" \ - --set STATIC_FILES "${frontend}" - - makeWrapper ${init_db} $out/libexec/init_db \ - --set PYTHONPATH "$out/${python.sitePackages}:${pythonpkgs.makePythonPath dependencies}" \ - --set OUT "$out" - ''; - - nativeCheckInputs = with pythonpkgs; [ pytestCheckHook ]; - - # Needed for tests - preCheck = '' - export NLTK_DATA=${nltk-data.averaged-perceptron-tagger-eng} - ''; - - disabledTestPaths = [ - # KeyError: 'alembic_version' - "tests/unit_tests/services_tests/backup_v2_tests/test_backup_v2.py" - "tests/unit_tests/services_tests/backup_v2_tests/test_alchemy_exporter.py" - # sqlite3.OperationalError: no such table - "tests/unit_tests/services_tests/scheduler/tasks/test_create_timeline_events.py" - "tests/unit_tests/test_ingredient_parser.py" - "tests/unit_tests/test_security.py" - ]; - - passthru = { - updateScript = nix-update-script { }; - tests = { - inherit (nixosTests) mealie; - }; - }; - - meta = with lib; { - description = "Self hosted recipe manager and meal planner"; - longDescription = '' - Mealie is a self hosted recipe manager and meal planner with a REST API and a reactive frontend - application built in NuxtJS for a pleasant user experience for the whole family. Easily add recipes into your - database by providing the URL and Mealie will automatically import the relevant data or add a family recipe with - the UI editor. - ''; - homepage = "https://mealie.io"; - changelog = "https://github.com/mealie-recipes/mealie/releases/tag/${src.rev}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ - litchipi - anoa + dependencies = with pythonpkgs; [ + aiofiles + alembic + aniso8601 + appdirs + apprise + authlib + bcrypt + fastapi + html2text + httpx + ingredient-parser-nlp + itsdangerous + jinja2 + lxml + openai + orjson + paho-mqtt + pillow-heif + pydantic-settings + pyhumps + pyjwt + python-dateutil + python-dotenv + python-ldap + python-multipart + python-slugify + pyyaml + rapidfuzz + recipe-scrapers + sqlalchemy + tzdata + uvicorn ]; - mainProgram = "mealie"; - }; -} + + postPatch = '' + rm -rf dev # Do not need dev scripts & code + + substituteInPlace mealie/__init__.py \ + --replace-fail '__version__ = ' '__version__ = "v${version}" #' + ''; + + postInstall = + let + start_script = writeShellScript "start-mealie" '' + ${lib.getExe pythonpkgs.gunicorn} "$@" -k uvicorn.workers.UvicornWorker mealie.app:app; + ''; + init_db = writeShellScript "init-mealie-db" '' + ${python.interpreter} $OUT/${python.sitePackages}/mealie/db/init_db.py + ''; + in + '' + mkdir -p $out/bin $out/libexec + rm -f $out/bin/* + + makeWrapper ${start_script} $out/bin/mealie \ + --set PYTHONPATH "$out/${python.sitePackages}:${pythonpkgs.makePythonPath dependencies}" \ + --set STATIC_FILES "${frontend}" + + makeWrapper ${init_db} $out/libexec/init_db \ + --set PYTHONPATH "$out/${python.sitePackages}:${pythonpkgs.makePythonPath dependencies}" \ + --set OUT "$out" + ''; + + nativeCheckInputs = with pythonpkgs; [ pytestCheckHook ]; + + # Needed for tests + preCheck = '' + export NLTK_DATA=${nltk-data.averaged-perceptron-tagger-eng} + ''; + + disabledTestPaths = [ + # KeyError: 'alembic_version' + "tests/unit_tests/services_tests/backup_v2_tests/test_backup_v2.py" + "tests/unit_tests/services_tests/backup_v2_tests/test_alchemy_exporter.py" + # sqlite3.OperationalError: no such table + "tests/unit_tests/services_tests/scheduler/tasks/test_create_timeline_events.py" + "tests/unit_tests/test_ingredient_parser.py" + "tests/unit_tests/test_security.py" + ]; + + passthru = { + updateScript = nix-update-script { }; + tests = { + inherit (nixosTests) mealie; + }; + }; + + meta = with lib; { + description = "Self hosted recipe manager and meal planner"; + longDescription = '' + Mealie is a self hosted recipe manager and meal planner with a REST API and a reactive frontend + application built in NuxtJS for a pleasant user experience for the whole family. Easily add recipes into your + database by providing the URL and Mealie will automatically import the relevant data or add a family recipe with + the UI editor. + ''; + homepage = "https://mealie.io"; + changelog = "https://github.com/mealie-recipes/mealie/releases/tag/${src.rev}"; + license = licenses.agpl3Only; + maintainers = with maintainers; [ + litchipi + anoa + ]; + mainProgram = "mealie"; + }; + } From 3cd4cce6a7d9d585925f02b24e4244cb0517088e Mon Sep 17 00:00:00 2001 From: Litchi Pi Date: Mon, 21 Jul 2025 17:42:02 +0200 Subject: [PATCH 017/116] fixup, add release notes Signed-off-by: Litchi Pi --- doc/release-notes/rl-2511.section.md | 2 ++ pkgs/by-name/me/mealie/package.nix | 1 + 2 files changed, 3 insertions(+) diff --git a/doc/release-notes/rl-2511.section.md b/doc/release-notes/rl-2511.section.md index 2e54b34da408..8e3e0b942826 100644 --- a/doc/release-notes/rl-2511.section.md +++ b/doc/release-notes/rl-2511.section.md @@ -80,6 +80,8 @@ +- `mealie` has been updated to 3.0.1: This update introduces breaking changes in some API endpoints (see the [release changelog](https://github.com/mealie-recipes/mealie/releases/tag/v3.0.0)) + ### Breaking changes {#sec-nixpkgs-release-25.11-lib-breaking} - `reaction` has been updated to version 2, which includes some breaking changes. diff --git a/pkgs/by-name/me/mealie/package.nix b/pkgs/by-name/me/mealie/package.nix index 2c3111d2725f..7dfb672abb12 100644 --- a/pkgs/by-name/me/mealie/package.nix +++ b/pkgs/by-name/me/mealie/package.nix @@ -55,6 +55,7 @@ in pythonpkgs.buildPythonApplication rec { orjson paho-mqtt pillow-heif + psycopg2 pydantic-settings pyhumps pyjwt From 2b4cdabe6716b830c3759e09167ba821ebe92a8f Mon Sep 17 00:00:00 2001 From: Litchi Pi Date: Mon, 21 Jul 2025 17:59:41 +0200 Subject: [PATCH 018/116] format Signed-off-by: Litchi Pi --- pkgs/by-name/me/mealie/mealie-frontend.nix | 6 +- pkgs/by-name/me/mealie/package.nix | 211 +++++++++++---------- 2 files changed, 110 insertions(+), 107 deletions(-) diff --git a/pkgs/by-name/me/mealie/mealie-frontend.nix b/pkgs/by-name/me/mealie/mealie-frontend.nix index 885f7c4eb0d9..8fc766756e99 100644 --- a/pkgs/by-name/me/mealie/mealie-frontend.nix +++ b/pkgs/by-name/me/mealie/mealie-frontend.nix @@ -9,9 +9,11 @@ src: version: fixup-yarn-lock, stdenv, yarn, -}: let +}: +let nodejs = nodePackages_latest.nodejs; -in stdenv.mkDerivation { +in +stdenv.mkDerivation { name = "mealie-frontend"; inherit version; src = "${src}/frontend"; diff --git a/pkgs/by-name/me/mealie/package.nix b/pkgs/by-name/me/mealie/package.nix index 7dfb672abb12..271e700f3cfb 100644 --- a/pkgs/by-name/me/mealie/package.nix +++ b/pkgs/by-name/me/mealie/package.nix @@ -23,123 +23,124 @@ let pythonpkgs = python3Packages; python = pythonpkgs.python; -in pythonpkgs.buildPythonApplication rec { - pname = "mealie"; - inherit version src; - pyproject = true; +in +pythonpkgs.buildPythonApplication rec { + pname = "mealie"; + inherit version src; + pyproject = true; - build-system = with pythonpkgs; [ poetry-core ]; + build-system = with pythonpkgs; [ poetry-core ]; - nativeBuildInputs = [ makeWrapper ]; + nativeBuildInputs = [ makeWrapper ]; - dontWrapPythonPrograms = true; + dontWrapPythonPrograms = true; - pythonRelaxDeps = true; + pythonRelaxDeps = true; - dependencies = with pythonpkgs; [ - aiofiles - alembic - aniso8601 - appdirs - apprise - authlib - bcrypt - fastapi - html2text - httpx - ingredient-parser-nlp - itsdangerous - jinja2 - lxml - openai - orjson - paho-mqtt - pillow-heif - psycopg2 - pydantic-settings - pyhumps - pyjwt - python-dateutil - python-dotenv - python-ldap - python-multipart - python-slugify - pyyaml - rapidfuzz - recipe-scrapers - sqlalchemy - tzdata - uvicorn - ]; + dependencies = with pythonpkgs; [ + aiofiles + alembic + aniso8601 + appdirs + apprise + authlib + bcrypt + fastapi + html2text + httpx + ingredient-parser-nlp + itsdangerous + jinja2 + lxml + openai + orjson + paho-mqtt + pillow-heif + psycopg2 + pydantic-settings + pyhumps + pyjwt + python-dateutil + python-dotenv + python-ldap + python-multipart + python-slugify + pyyaml + rapidfuzz + recipe-scrapers + sqlalchemy + tzdata + uvicorn + ]; - postPatch = '' - rm -rf dev # Do not need dev scripts & code + postPatch = '' + rm -rf dev # Do not need dev scripts & code - substituteInPlace mealie/__init__.py \ - --replace-fail '__version__ = ' '__version__ = "v${version}" #' + substituteInPlace mealie/__init__.py \ + --replace-fail '__version__ = ' '__version__ = "v${version}" #' + ''; + + postInstall = + let + start_script = writeShellScript "start-mealie" '' + ${lib.getExe pythonpkgs.gunicorn} "$@" -k uvicorn.workers.UvicornWorker mealie.app:app; + ''; + init_db = writeShellScript "init-mealie-db" '' + ${python.interpreter} $OUT/${python.sitePackages}/mealie/db/init_db.py + ''; + in + '' + mkdir -p $out/bin $out/libexec + rm -f $out/bin/* + + makeWrapper ${start_script} $out/bin/mealie \ + --set PYTHONPATH "$out/${python.sitePackages}:${pythonpkgs.makePythonPath dependencies}" \ + --set STATIC_FILES "${frontend}" + + makeWrapper ${init_db} $out/libexec/init_db \ + --set PYTHONPATH "$out/${python.sitePackages}:${pythonpkgs.makePythonPath dependencies}" \ + --set OUT "$out" ''; - postInstall = - let - start_script = writeShellScript "start-mealie" '' - ${lib.getExe pythonpkgs.gunicorn} "$@" -k uvicorn.workers.UvicornWorker mealie.app:app; - ''; - init_db = writeShellScript "init-mealie-db" '' - ${python.interpreter} $OUT/${python.sitePackages}/mealie/db/init_db.py - ''; - in - '' - mkdir -p $out/bin $out/libexec - rm -f $out/bin/* + nativeCheckInputs = with pythonpkgs; [ pytestCheckHook ]; - makeWrapper ${start_script} $out/bin/mealie \ - --set PYTHONPATH "$out/${python.sitePackages}:${pythonpkgs.makePythonPath dependencies}" \ - --set STATIC_FILES "${frontend}" + # Needed for tests + preCheck = '' + export NLTK_DATA=${nltk-data.averaged-perceptron-tagger-eng} + ''; - makeWrapper ${init_db} $out/libexec/init_db \ - --set PYTHONPATH "$out/${python.sitePackages}:${pythonpkgs.makePythonPath dependencies}" \ - --set OUT "$out" - ''; + disabledTestPaths = [ + # KeyError: 'alembic_version' + "tests/unit_tests/services_tests/backup_v2_tests/test_backup_v2.py" + "tests/unit_tests/services_tests/backup_v2_tests/test_alchemy_exporter.py" + # sqlite3.OperationalError: no such table + "tests/unit_tests/services_tests/scheduler/tasks/test_create_timeline_events.py" + "tests/unit_tests/test_ingredient_parser.py" + "tests/unit_tests/test_security.py" + ]; - nativeCheckInputs = with pythonpkgs; [ pytestCheckHook ]; + passthru = { + updateScript = nix-update-script { }; + tests = { + inherit (nixosTests) mealie; + }; + }; - # Needed for tests - preCheck = '' - export NLTK_DATA=${nltk-data.averaged-perceptron-tagger-eng} + meta = with lib; { + description = "Self hosted recipe manager and meal planner"; + longDescription = '' + Mealie is a self hosted recipe manager and meal planner with a REST API and a reactive frontend + application built in NuxtJS for a pleasant user experience for the whole family. Easily add recipes into your + database by providing the URL and Mealie will automatically import the relevant data or add a family recipe with + the UI editor. ''; - - disabledTestPaths = [ - # KeyError: 'alembic_version' - "tests/unit_tests/services_tests/backup_v2_tests/test_backup_v2.py" - "tests/unit_tests/services_tests/backup_v2_tests/test_alchemy_exporter.py" - # sqlite3.OperationalError: no such table - "tests/unit_tests/services_tests/scheduler/tasks/test_create_timeline_events.py" - "tests/unit_tests/test_ingredient_parser.py" - "tests/unit_tests/test_security.py" + homepage = "https://mealie.io"; + changelog = "https://github.com/mealie-recipes/mealie/releases/tag/${src.rev}"; + license = licenses.agpl3Only; + maintainers = with maintainers; [ + litchipi + anoa ]; - - passthru = { - updateScript = nix-update-script { }; - tests = { - inherit (nixosTests) mealie; - }; - }; - - meta = with lib; { - description = "Self hosted recipe manager and meal planner"; - longDescription = '' - Mealie is a self hosted recipe manager and meal planner with a REST API and a reactive frontend - application built in NuxtJS for a pleasant user experience for the whole family. Easily add recipes into your - database by providing the URL and Mealie will automatically import the relevant data or add a family recipe with - the UI editor. - ''; - homepage = "https://mealie.io"; - changelog = "https://github.com/mealie-recipes/mealie/releases/tag/${src.rev}"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ - litchipi - anoa - ]; - mainProgram = "mealie"; - }; - } + mainProgram = "mealie"; + }; +} From 134cc129b3083f8fe0c4527f51340c214e477346 Mon Sep 17 00:00:00 2001 From: GiggleSquid Date: Wed, 23 Jul 2025 07:29:37 +0100 Subject: [PATCH 019/116] cross-seed: 6.11.1 -> 6.13.1 --- pkgs/by-name/cr/cross-seed/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/cr/cross-seed/package.nix b/pkgs/by-name/cr/cross-seed/package.nix index f5abb0347bf0..3266cbf69a8b 100644 --- a/pkgs/by-name/cr/cross-seed/package.nix +++ b/pkgs/by-name/cr/cross-seed/package.nix @@ -8,16 +8,16 @@ buildNpmPackage rec { pname = "cross-seed"; - version = "6.11.1"; + version = "6.13.1"; src = fetchFromGitHub { owner = "cross-seed"; repo = "cross-seed"; tag = "v${version}"; - hash = "sha256-ZyagXbbYUZA2CfoqVh0pmKt91kTLUGB8hUItgHbPb2w="; + hash = "sha256-9esKfc2TuJtMPWF9JV7ML8udjVkcIIU7pN+eOsvg2Z4="; }; - npmDepsHash = "sha256-hSiGnw3Fo//oTONBmtuv0sDvldCzs1PsdImxdGWEpMo="; + npmDepsHash = "sha256-fxeFLcfRSHMMLoay/MiiX2wwJPF+XhoAUFnQvxnlvqA="; passthru = { updateScript = nix-update-script; From 5f3351d86e3a18357ccbd618a58c4370e7376389 Mon Sep 17 00:00:00 2001 From: Litchi Pi Date: Wed, 23 Jul 2025 09:08:32 +0200 Subject: [PATCH 020/116] Update to 3.0.2 Signed-off-by: Litchi Pi --- pkgs/by-name/me/mealie/mealie-frontend.nix | 1 - pkgs/by-name/me/mealie/package.nix | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/me/mealie/mealie-frontend.nix b/pkgs/by-name/me/mealie/mealie-frontend.nix index 8fc766756e99..444e0eac309f 100644 --- a/pkgs/by-name/me/mealie/mealie-frontend.nix +++ b/pkgs/by-name/me/mealie/mealie-frontend.nix @@ -3,7 +3,6 @@ src: version: lib, fetchFromGitHub, fetchYarnDeps, - dart, dart-sass, nodePackages_latest, fixup-yarn-lock, diff --git a/pkgs/by-name/me/mealie/package.nix b/pkgs/by-name/me/mealie/package.nix index 271e700f3cfb..cd20fb65b996 100644 --- a/pkgs/by-name/me/mealie/package.nix +++ b/pkgs/by-name/me/mealie/package.nix @@ -11,12 +11,12 @@ }: let - version = "3.0.1"; + version = "3.0.2"; src = fetchFromGitHub { owner = "mealie-recipes"; repo = "mealie"; tag = "v${version}"; - hash = "sha256-ev5S/JGj9lYejuKTRMbZ49qqupJpNF5Vc12VFsJPqpc="; + hash = "sha256-0GlHfyoVEqmfTDSN9BGXrLRkStRjWjv2qzZac2oYu7Q="; }; frontend = callPackage (import ./mealie-frontend.nix src version) { }; From a6cdf3f0f059f594dc3bf18647938423aa4a18aa Mon Sep 17 00:00:00 2001 From: Litchi Pi Date: Wed, 23 Jul 2025 13:51:56 +0200 Subject: [PATCH 021/116] Add API tests for mealie Signed-off-by: Litchi Pi --- nixos/tests/mealie.nix | 72 ++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 70 insertions(+), 2 deletions(-) diff --git a/nixos/tests/mealie.nix b/nixos/tests/mealie.nix index 97dd4d048f48..3cb8fa23857b 100644 --- a/nixos/tests/mealie.nix +++ b/nixos/tests/mealie.nix @@ -15,6 +15,7 @@ services.mealie = { enable = true; port = 9001; + settings.ALLOW_SIGNUP = "true"; }; }; postgres = { @@ -27,16 +28,83 @@ }; testScript = '' - start_all() + import json + import urllib.parse + + def api_get(node, path, qry={}, **headers): + url = f"http://localhost:9001/api{path}" + if len(qry) > 0: + url += "?" + "&".join([f"{k}={urllib.parse.quote(v)}" for k, v in qry.items()]) + + headers = " ".join([f"-H '{k}: {str(v)}'" for k, v in headers.items()]) + + got = node.succeed(f"curl -s -X GET {headers} --fail {url}") + print(f"* GET {path}\n{got}") + return json.loads(got) + + def api_post(node, path, method="POST", urlencode=False, body={}, qry={}, **headers): + url = f"http://localhost:9001/api{path}" + if len(qry) > 0: + url += "?" + "&".join([f"{k}={urllib.parse.quote(v)}" for k, v in qry.items()]) + + if urlencode: + headers["Content-Type"] = "application/x-www-form-urlencoded" + print("BODY", body) + body = "&".join([f"{k}={urllib.parse.quote(str(v))}" for k, v in body.items()]) + else: + headers["Content-Type"] = "application/json" + body = json.dumps(body) + + headers["Accept"] = "application/json" + headers = " ".join([f"-H '{k}: {str(v)}'" for k, v in headers.items()]) + + got = node.succeed(f"curl -v --fail -X {method} {url} {headers} -d '{body}'") + print(f"* POST {path}\n{got}") + return json.loads(got) def test_mealie(node): node.wait_for_unit("mealie.service") node.wait_for_open_port(9001) node.succeed("curl --fail http://localhost:9001") + got = api_get(node, "/app/about") + assert got["version"] == "v${pkgs.mealie.version}" + + new_user = dict( + email=node.name + ".nomail@no.mail", + username="noname-" + node.name, + fullName="No Name" + node.name, + password="SuperSecure" + node.name, + passwordConfirm="SuperSecure" + node.name, + group="mygroup" + node.name, + ) + got = api_post(node, "/users/register", body=new_user) + got = api_post(node, "/auth/token", urlencode=True, body={ + "username": new_user["username"], + "password": new_user["password"], + "remember_me": False, + }) + assert "access_token" in got + token = "Bearer " + got["access_token"] + + got = api_get(node, "/recipes", authorization=token) + assert got["total"] == 0 + + slug = api_post(node, "/recipes", body={"name": "TestRecipe"}, authorization=token) + recipe = { "description": "Test recipe" } + got = api_post(node, f"/recipes/{slug}", body=recipe, method="PATCH", authorization=token) + got = api_get(node, "/recipes", authorization=token) + assert got["total"] > 0 + assert got["items"][0]["description"] == recipe["description"] + + postgres.start() + test_mealie(postgres) + postgres.send_monitor_command("quit") + postgres.wait_for_shutdown() + + sqlite.start() test_mealie(sqlite) sqlite.send_monitor_command("quit") sqlite.wait_for_shutdown() - test_mealie(postgres) ''; } From badcde8977e6c9a068a17bf8a670d4368a213962 Mon Sep 17 00:00:00 2001 From: Litchi Pi Date: Wed, 23 Jul 2025 13:57:01 +0200 Subject: [PATCH 022/116] Update documentation to 3.0.2 Signed-off-by: Litchi Pi --- doc/release-notes/rl-2511.section.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/release-notes/rl-2511.section.md b/doc/release-notes/rl-2511.section.md index 8e3e0b942826..dd82755be983 100644 --- a/doc/release-notes/rl-2511.section.md +++ b/doc/release-notes/rl-2511.section.md @@ -80,7 +80,7 @@ -- `mealie` has been updated to 3.0.1: This update introduces breaking changes in some API endpoints (see the [release changelog](https://github.com/mealie-recipes/mealie/releases/tag/v3.0.0)) +- `mealie` has been updated to 3.0.2: This update introduces breaking changes in some API endpoints (see the [release changelog](https://github.com/mealie-recipes/mealie/releases/tag/v3.0.0)) ### Breaking changes {#sec-nixpkgs-release-25.11-lib-breaking} From f5650227261c6aea3b1b23ca05001c57bd6d226a Mon Sep 17 00:00:00 2001 From: Hugo Renard Date: Wed, 23 Jul 2025 12:14:14 +0200 Subject: [PATCH 023/116] stunner-webrtc: init at 0.5.8 --- pkgs/by-name/st/stunner-webrtc/package.nix | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pkgs/by-name/st/stunner-webrtc/package.nix diff --git a/pkgs/by-name/st/stunner-webrtc/package.nix b/pkgs/by-name/st/stunner-webrtc/package.nix new file mode 100644 index 000000000000..8dc6ad9718a4 --- /dev/null +++ b/pkgs/by-name/st/stunner-webrtc/package.nix @@ -0,0 +1,28 @@ +{ + lib, + buildGoModule, + fetchFromGitHub, +}: + +buildGoModule (finalAttrs: { + pname = "stunner"; + version = "0.5.8"; + + src = fetchFromGitHub { + owner = "firefart"; + repo = "stunner"; + tag = "v${finalAttrs.version}"; + hash = "sha256-A/k43ZOk/JIpCHBI1ygFBjmbDWWmLMIzuDbM6+8FKdw="; + }; + + vendorHash = "sha256-cXvHNn4BbVVUVgy5IwCe/K1ISV8CyDilJrNYEK2QFU8="; + + meta = { + description = "Test and exploit STUN, TURN and TURN over TCP servers"; + homepage = "https://github.com/firefart/stunner"; + changelog = "https://github.com/firefart/stunner/releases/tag/v${finalAttrs.version}"; + license = lib.licenses.cc-by-nc-sa-40; + maintainers = with lib.maintainers; [ hougo ]; + mainProgram = "stunner"; + }; +}) From 19f88ab5f08f0738fbec21cf90f1b3a438977fde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=A9clairevoyant?= <848000+eclairevoyant@users.noreply.github.com> Date: Sat, 26 Jul 2025 17:35:48 -0400 Subject: [PATCH 024/116] maintainers: drop dan4ik605743 --- maintainers/maintainer-list.nix | 6 ------ .../misc/cubocore-packages/coreaction/default.nix | 2 +- .../misc/cubocore-packages/corearchiver/default.nix | 2 +- pkgs/applications/misc/cubocore-packages/corefm/default.nix | 2 +- .../misc/cubocore-packages/coregarage/default.nix | 2 +- .../misc/cubocore-packages/corehunt/default.nix | 2 +- .../misc/cubocore-packages/coreimage/default.nix | 2 +- .../misc/cubocore-packages/coreinfo/default.nix | 2 +- .../misc/cubocore-packages/corekeyboard/default.nix | 2 +- .../applications/misc/cubocore-packages/corepad/default.nix | 2 +- .../misc/cubocore-packages/corepaint/default.nix | 2 +- .../applications/misc/cubocore-packages/corepdf/default.nix | 2 +- .../misc/cubocore-packages/corepins/default.nix | 2 +- .../misc/cubocore-packages/corerenamer/default.nix | 2 +- .../misc/cubocore-packages/coreshot/default.nix | 2 +- .../misc/cubocore-packages/corestats/default.nix | 2 +- .../misc/cubocore-packages/corestuff/default.nix | 2 +- .../misc/cubocore-packages/coreterminal/default.nix | 2 +- .../misc/cubocore-packages/coretime/default.nix | 2 +- .../misc/cubocore-packages/coretoppings/default.nix | 2 +- .../misc/cubocore-packages/coreuniverse/default.nix | 2 +- .../misc/cubocore-packages/libcprime/default.nix | 2 +- .../applications/misc/cubocore-packages/libcsys/default.nix | 2 +- pkgs/applications/window-managers/i3/lock-blur.nix | 2 +- pkgs/by-name/af/afetch/package.nix | 1 - pkgs/by-name/gi/github-desktop/package.nix | 2 +- pkgs/by-name/li/libarchive-qt/package.nix | 2 +- pkgs/by-name/ta/tagutil/package.nix | 2 +- pkgs/by-name/to/tonelib-gfx/package.nix | 1 - pkgs/by-name/to/tonelib-jam/package.nix | 2 +- pkgs/by-name/to/tonelib-metal/package.nix | 2 +- pkgs/by-name/to/tonelib-zoom/package.nix | 2 +- pkgs/by-name/vk/vk-cli/package.nix | 2 +- 33 files changed, 30 insertions(+), 38 deletions(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 39f8ece163fa..de75ee363748 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -5562,12 +5562,6 @@ matrix = "@dan:matrix.org"; name = "Daniel Theriault"; }; - dan4ik605743 = { - email = "6057430gu@gmail.com"; - github = "dan4ik605743"; - githubId = 86075850; - name = "Danil Danevich"; - }; danbst = { email = "abcz2.uprola@gmail.com"; github = "danbst"; diff --git a/pkgs/applications/misc/cubocore-packages/coreaction/default.nix b/pkgs/applications/misc/cubocore-packages/coreaction/default.nix index 16b72bbeb2d8..320aaf5c5fae 100644 --- a/pkgs/applications/misc/cubocore-packages/coreaction/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coreaction/default.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "coreaction"; homepage = "https://gitlab.com/cubocore/coreapps/coreaction"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/corearchiver/default.nix b/pkgs/applications/misc/cubocore-packages/corearchiver/default.nix index c78878dc72c7..922c1ebb328d 100644 --- a/pkgs/applications/misc/cubocore-packages/corearchiver/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corearchiver/default.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "corearchiver"; homepage = "https://gitlab.com/cubocore/coreapps/corearchiver"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/corefm/default.nix b/pkgs/applications/misc/cubocore-packages/corefm/default.nix index 43407b104869..599f56ffbfb6 100644 --- a/pkgs/applications/misc/cubocore-packages/corefm/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corefm/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "corefm"; homepage = "https://gitlab.com/cubocore/coreapps/corefm"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/coregarage/default.nix b/pkgs/applications/misc/cubocore-packages/coregarage/default.nix index 279026051549..c02c46884ba1 100644 --- a/pkgs/applications/misc/cubocore-packages/coregarage/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coregarage/default.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "coregarage"; homepage = "https://gitlab.com/cubocore/coreapps/coregarage"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/corehunt/default.nix b/pkgs/applications/misc/cubocore-packages/corehunt/default.nix index bce9d730a27c..00b2b0761328 100644 --- a/pkgs/applications/misc/cubocore-packages/corehunt/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corehunt/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "corehunt"; homepage = "https://gitlab.com/cubocore/coreapps/corehunt"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/coreimage/default.nix b/pkgs/applications/misc/cubocore-packages/coreimage/default.nix index b891e9f132a0..f6be00ece3e5 100644 --- a/pkgs/applications/misc/cubocore-packages/coreimage/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coreimage/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "coreimage"; homepage = "https://gitlab.com/cubocore/coreapps/coreimage"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/coreinfo/default.nix b/pkgs/applications/misc/cubocore-packages/coreinfo/default.nix index 9aba07fcff1d..afce7298f039 100644 --- a/pkgs/applications/misc/cubocore-packages/coreinfo/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coreinfo/default.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "coreinfo"; homepage = "https://gitlab.com/cubocore/coreapps/coreinfo"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/corekeyboard/default.nix b/pkgs/applications/misc/cubocore-packages/corekeyboard/default.nix index 4c7dffabe200..37d9bde54aae 100644 --- a/pkgs/applications/misc/cubocore-packages/corekeyboard/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corekeyboard/default.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "corekeyboard"; homepage = "https://gitlab.com/cubocore/coreapps/corekeyboard"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/corepad/default.nix b/pkgs/applications/misc/cubocore-packages/corepad/default.nix index 86c0689979ab..db8ae6dd4b75 100644 --- a/pkgs/applications/misc/cubocore-packages/corepad/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corepad/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "corepad"; homepage = "https://gitlab.com/cubocore/coreapps/corepad"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/corepaint/default.nix b/pkgs/applications/misc/cubocore-packages/corepaint/default.nix index b281a3fd448d..435a1b47e3ff 100644 --- a/pkgs/applications/misc/cubocore-packages/corepaint/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corepaint/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "corepaint"; homepage = "https://gitlab.com/cubocore/coreapps/corepaint"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/corepdf/default.nix b/pkgs/applications/misc/cubocore-packages/corepdf/default.nix index fa4e8374b511..795e57d52366 100644 --- a/pkgs/applications/misc/cubocore-packages/corepdf/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corepdf/default.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "corepdf"; homepage = "https://gitlab.com/cubocore/coreapps/corepdf"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/corepins/default.nix b/pkgs/applications/misc/cubocore-packages/corepins/default.nix index d7d49426be56..9d3df7951f04 100644 --- a/pkgs/applications/misc/cubocore-packages/corepins/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corepins/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "corepins"; homepage = "https://gitlab.com/cubocore/coreapps/corepins"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/corerenamer/default.nix b/pkgs/applications/misc/cubocore-packages/corerenamer/default.nix index c44dc5c41967..7a3174f37687 100644 --- a/pkgs/applications/misc/cubocore-packages/corerenamer/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corerenamer/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "corerenamer"; homepage = "https://gitlab.com/cubocore/coreapps/corerenamer"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/coreshot/default.nix b/pkgs/applications/misc/cubocore-packages/coreshot/default.nix index 2c75140f7465..af001ecce2a8 100644 --- a/pkgs/applications/misc/cubocore-packages/coreshot/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coreshot/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "coreshot"; homepage = "https://gitlab.com/cubocore/coreapps/coreshot"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/corestats/default.nix b/pkgs/applications/misc/cubocore-packages/corestats/default.nix index dfe7b160d1d2..4926de4a663c 100644 --- a/pkgs/applications/misc/cubocore-packages/corestats/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corestats/default.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "corestats"; homepage = "https://gitlab.com/cubocore/coreapps/corestats"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/corestuff/default.nix b/pkgs/applications/misc/cubocore-packages/corestuff/default.nix index 55089f533438..1d0faa705a01 100644 --- a/pkgs/applications/misc/cubocore-packages/corestuff/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corestuff/default.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "corestuff"; homepage = "https://gitlab.com/cubocore/coreapps/corestuff"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; # Address boundary error broken = true; diff --git a/pkgs/applications/misc/cubocore-packages/coreterminal/default.nix b/pkgs/applications/misc/cubocore-packages/coreterminal/default.nix index 59f3c26c31af..18cba76b8fbb 100644 --- a/pkgs/applications/misc/cubocore-packages/coreterminal/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coreterminal/default.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "coreterminal"; homepage = "https://gitlab.com/cubocore/coreapps/coreterminal"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/coretime/default.nix b/pkgs/applications/misc/cubocore-packages/coretime/default.nix index 4a48cf604cd9..6f54355722ab 100644 --- a/pkgs/applications/misc/cubocore-packages/coretime/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coretime/default.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "coretime"; homepage = "https://gitlab.com/cubocore/coreapps/coretime"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/coretoppings/default.nix b/pkgs/applications/misc/cubocore-packages/coretoppings/default.nix index 70cb09b4dca3..82328cb4f247 100644 --- a/pkgs/applications/misc/cubocore-packages/coretoppings/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coretoppings/default.nix @@ -81,7 +81,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "shareIT"; homepage = "https://gitlab.com/cubocore/coreapps/coretoppings"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/coreuniverse/default.nix b/pkgs/applications/misc/cubocore-packages/coreuniverse/default.nix index b5fa399805ac..059b3f79478e 100644 --- a/pkgs/applications/misc/cubocore-packages/coreuniverse/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coreuniverse/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "coreuniverse"; homepage = "https://gitlab.com/cubocore/coreapps/coreuniverse"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/libcprime/default.nix b/pkgs/applications/misc/cubocore-packages/libcprime/default.nix index f190c303eae2..f2f28822e5cb 100644 --- a/pkgs/applications/misc/cubocore-packages/libcprime/default.nix +++ b/pkgs/applications/misc/cubocore-packages/libcprime/default.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Library for bookmarking, saving recent activites, managing settings of C-Suite"; homepage = "https://gitlab.com/cubocore/libcprime"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/libcsys/default.nix b/pkgs/applications/misc/cubocore-packages/libcsys/default.nix index d48596c9c78f..7d69d36a6279 100644 --- a/pkgs/applications/misc/cubocore-packages/libcsys/default.nix +++ b/pkgs/applications/misc/cubocore-packages/libcsys/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Library for managing drive and getting system resource information in real time"; homepage = "https://gitlab.com/cubocore/libcsys"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/window-managers/i3/lock-blur.nix b/pkgs/applications/window-managers/i3/lock-blur.nix index 68471ad4bc0d..56e21ba19407 100644 --- a/pkgs/applications/window-managers/i3/lock-blur.nix +++ b/pkgs/applications/window-managers/i3/lock-blur.nix @@ -34,7 +34,7 @@ i3lock-color.overrideAttrs (oldAttrs: rec { description = "Improved screenlocker based upon XCB and PAM with background blurring filter"; homepage = "https://github.com/karulont/i3lock-blur/"; license = licenses.bsd3; - maintainers = with maintainers; [ dan4ik605743 ]; + maintainers = with maintainers; [ ]; platforms = platforms.all; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/i3lock-blur.x86_64-darwin }; diff --git a/pkgs/by-name/af/afetch/package.nix b/pkgs/by-name/af/afetch/package.nix index 79c7da836198..8af8ed4438e0 100644 --- a/pkgs/by-name/af/afetch/package.nix +++ b/pkgs/by-name/af/afetch/package.nix @@ -24,7 +24,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/13-CF/afetch"; license = lib.licenses.gpl3Plus; maintainers = with lib.maintainers; [ - dan4ik605743 jk ]; platforms = lib.platforms.linux; diff --git a/pkgs/by-name/gi/github-desktop/package.nix b/pkgs/by-name/gi/github-desktop/package.nix index 29da084ecdf2..46be620793f4 100644 --- a/pkgs/by-name/gi/github-desktop/package.nix +++ b/pkgs/by-name/gi/github-desktop/package.nix @@ -100,7 +100,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { homepage = "https://desktop.github.com/"; license = lib.licenses.mit; mainProgram = "github-desktop"; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; diff --git a/pkgs/by-name/li/libarchive-qt/package.nix b/pkgs/by-name/li/libarchive-qt/package.nix index 74b7f79a11d1..015f30014c32 100644 --- a/pkgs/by-name/li/libarchive-qt/package.nix +++ b/pkgs/by-name/li/libarchive-qt/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "archiver"; homepage = "https://gitlab.com/marcusbritanicus/libarchive-qt"; license = lib.licenses.lgpl3Plus; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ta/tagutil/package.nix b/pkgs/by-name/ta/tagutil/package.nix index de5b89cad116..9f26660d647e 100644 --- a/pkgs/by-name/ta/tagutil/package.nix +++ b/pkgs/by-name/ta/tagutil/package.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation rec { description = "Scriptable music files tags tool and editor"; homepage = "https://github.com/kaworu/tagutil"; license = licenses.bsd2; - maintainers = with maintainers; [ dan4ik605743 ]; + maintainers = with maintainers; [ ]; platforms = platforms.linux; mainProgram = "tagutil"; }; diff --git a/pkgs/by-name/to/tonelib-gfx/package.nix b/pkgs/by-name/to/tonelib-gfx/package.nix index 086dff96b162..f800e909f860 100644 --- a/pkgs/by-name/to/tonelib-gfx/package.nix +++ b/pkgs/by-name/to/tonelib-gfx/package.nix @@ -69,7 +69,6 @@ stdenv.mkDerivation rec { sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.unfree; maintainers = with maintainers; [ - dan4ik605743 husjon orivej ]; diff --git a/pkgs/by-name/to/tonelib-jam/package.nix b/pkgs/by-name/to/tonelib-jam/package.nix index 4bfee1934bdf..8d474374848d 100644 --- a/pkgs/by-name/to/tonelib-jam/package.nix +++ b/pkgs/by-name/to/tonelib-jam/package.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation rec { homepage = "https://tonelib.net/"; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = [ "x86_64-linux" ]; mainProgram = "ToneLib-Jam"; }; diff --git a/pkgs/by-name/to/tonelib-metal/package.nix b/pkgs/by-name/to/tonelib-metal/package.nix index c25a4f1d10a9..ae7748152db9 100644 --- a/pkgs/by-name/to/tonelib-metal/package.nix +++ b/pkgs/by-name/to/tonelib-metal/package.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation rec { homepage = "https://tonelib.net"; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ dan4ik605743 ]; + maintainers = with lib.maintainers; [ ]; platforms = [ "x86_64-linux" ]; mainProgram = "ToneLib-Metal"; }; diff --git a/pkgs/by-name/to/tonelib-zoom/package.nix b/pkgs/by-name/to/tonelib-zoom/package.nix index 24e248b5e060..174620fbcde2 100644 --- a/pkgs/by-name/to/tonelib-zoom/package.nix +++ b/pkgs/by-name/to/tonelib-zoom/package.nix @@ -60,7 +60,7 @@ stdenv.mkDerivation rec { homepage = "https://tonelib.net/"; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.unfree; - maintainers = with maintainers; [ dan4ik605743 ]; + maintainers = with maintainers; [ ]; platforms = [ "x86_64-linux" ]; mainProgram = "ToneLib-Zoom"; }; diff --git a/pkgs/by-name/vk/vk-cli/package.nix b/pkgs/by-name/vk/vk-cli/package.nix index aaf91887ed0f..fe7fc0e8c6b9 100644 --- a/pkgs/by-name/vk/vk-cli/package.nix +++ b/pkgs/by-name/vk/vk-cli/package.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { homepage = "https://github.com/vk-cli/vk"; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.asl20; - maintainers = with maintainers; [ dan4ik605743 ]; + maintainers = with maintainers; [ ]; platforms = [ "x86_64-linux" ]; }; } From fbae6414248df96d1d0ef2fc38cd272373748bd6 Mon Sep 17 00:00:00 2001 From: znaniye Date: Sun, 27 Jul 2025 12:42:34 -0300 Subject: [PATCH 025/116] pythonPackages.aiocmd: init at 0.1.5 --- .../python-modules/aiocmd/default.nix | 35 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 37 insertions(+) create mode 100644 pkgs/development/python-modules/aiocmd/default.nix diff --git a/pkgs/development/python-modules/aiocmd/default.nix b/pkgs/development/python-modules/aiocmd/default.nix new file mode 100644 index 000000000000..a35a63f5f002 --- /dev/null +++ b/pkgs/development/python-modules/aiocmd/default.nix @@ -0,0 +1,35 @@ +{ + buildPythonPackage, + fetchFromGitHub, + lib, + prompt-toolkit, + setuptools, +}: +buildPythonPackage rec { + name = "aiocmd"; + version = "0.1.5"; + src = fetchFromGitHub { + owner = "KimiNewt"; + repo = "aiocmd"; + tag = "v${version}"; + hash = "sha256-C8dpeMTaoOMgfNP19JUYKUf+Vyw36Ry6dHkhaSm/QNk="; + }; + + pyproject = true; + + build-system = [ setuptools ]; + + dependencies = [ prompt-toolkit ]; + + doCheck = false; + + pythonImportsCheck = [ "aiocmd" ]; + + meta = { + description = "Asyncio-based automatic CLI creation tool using prompt-toolkit"; + homepage = "https://github.com/KimiNewt/aiocmd"; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.znaniye ]; + platforms = lib.platforms.linux; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2d3c984bebaf..41df3bbd0753 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -226,6 +226,8 @@ self: super: with self; { aiocache = callPackage ../development/python-modules/aiocache { }; + aiocmd = callPackage ../development/python-modules/aiocmd { }; + aiocoap = callPackage ../development/python-modules/aiocoap { }; aiocomelit = callPackage ../development/python-modules/aiocomelit { }; From 800e12d84865a111c2d1d1eb7928e6a0a9babd1a Mon Sep 17 00:00:00 2001 From: znaniye Date: Mon, 28 Jul 2025 21:59:09 -0300 Subject: [PATCH 026/116] openfreebuds: init at 0.17.1 --- pkgs/by-name/op/openfreebuds/package.nix | 70 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++ 2 files changed, 74 insertions(+) create mode 100644 pkgs/by-name/op/openfreebuds/package.nix diff --git a/pkgs/by-name/op/openfreebuds/package.nix b/pkgs/by-name/op/openfreebuds/package.nix new file mode 100644 index 000000000000..abb348f91dd8 --- /dev/null +++ b/pkgs/by-name/op/openfreebuds/package.nix @@ -0,0 +1,70 @@ +{ + fetchFromGitHub, + lib, + nix-update-script, + python3Packages, + qt6, + qt6Packages, +}: +python3Packages.buildPythonApplication rec { + name = "openfreebuds"; + version = "0.17.1"; + + src = fetchFromGitHub { + owner = "melianmiko"; + repo = "OpenFreebuds"; + tag = "v${version}"; + hash = "sha256-y89BTKk14P/2kkYo63i9HgAdenzCVVnNArDsTmo4bPU="; + }; + + pyproject = true; + + pythonRelaxDeps = [ "psutil" ]; + + build-system = with python3Packages; [ + pdm-backend + pyqt6 + ]; + + nativeBuildInputs = [ + qt6Packages.wrapQtAppsHook + qt6Packages.qttools + ]; + + buildInputs = [ qt6.qtbase ]; + + dependencies = with python3Packages; [ + aiocmd + aiohttp + dbus-next + pillow + psutil + pynput + pyqt6 + qasync + ]; + + preBuild = '' + find openfreebuds_qt/designer -name "*.ui" | while read ui_file; do + py_file="''${ui_file%.ui}.py" + pyuic6 "$ui_file" -o "$py_file" + done + + lrelease openfreebuds_qt/assets/i18n/*.ts + ''; + + preFixup = '' + makeWrapperArgs+=("''${qtWrapperArgs[@]}") + ''; + + passthru.updateScript = nix-update-script { }; + + meta = { + changelog = "https://github.com/melianmiko/OpenFreebuds/blob/${src.rev}/CHANGELOG.md"; + description = "Open source app for HUAWEI FreeBuds (Linux + Windows)"; + homepage = "https://github.com/melianmiko/OpenFreebuds"; + license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.znaniye ]; + platforms = lib.platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e8aac496ba84..c678b32343ae 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16552,6 +16552,10 @@ with pkgs; flutter = flutter324; }; + openfreebuds = callPackage ../by-name/op/openfreebuds/package.nix { + python3Packages = python3Full.pkgs; + }; + davis = callPackage ../by-name/da/davis/package.nix { php = php83; # https://github.com/tchapi/davis/issues/195 }; From d634694bdde8c249dc661ca79789a2b9aa6f860b Mon Sep 17 00:00:00 2001 From: Axel Karjalainen Date: Sun, 16 Mar 2025 20:02:42 +0200 Subject: [PATCH 027/116] nixos/cgit: use alias option for assets This makes it easier to replace an asset by just setting the Nginx virtual host's `locations."= robots.txt".alias`. Previously you had to either replace the extraConfig with mkForce or clear it and use the `alias` option. --- nixos/modules/services/networking/cgit.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/nixos/modules/services/networking/cgit.nix b/nixos/modules/services/networking/cgit.nix index 9c1f1bf7bf8e..c9abf022932f 100644 --- a/nixos/modules/services/networking/cgit.nix +++ b/nixos/modules/services/networking/cgit.nix @@ -256,9 +256,7 @@ in (genAttrs' [ "cgit.css" "cgit.png" "favicon.ico" "robots.txt" ] ( fileName: lib.nameValuePair "= ${stripLocation cfg}/${fileName}" { - extraConfig = '' - alias ${cfg.package}/cgit/${fileName}; - ''; + alias = lib.mkDefault "${cfg.package}/cgit/${fileName}"; } )) // { From 0db0c04000d194b8079aac51ed1911bcf0f82171 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Sun, 13 Jul 2025 10:03:39 -0700 Subject: [PATCH 028/116] python3Packages.torch: Disable duplicate openmp inclusion --- pkgs/development/python-modules/torch/source/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/torch/source/default.nix b/pkgs/development/python-modules/torch/source/default.nix index b6ac1e57523e..5e16b0284c76 100644 --- a/pkgs/development/python-modules/torch/source/default.nix +++ b/pkgs/development/python-modules/torch/source/default.nix @@ -526,7 +526,9 @@ buildPythonPackage rec { blas blas.provider ] - ++ lib.optionals stdenv.cc.isClang [ llvmPackages.openmp ] + # Including openmp leads to two copies being used. This segfaults on ARM. + # https://github.com/pytorch/pytorch/issues/149201#issuecomment-2776842320 + # ++ lib.optionals stdenv.cc.isClang [ llvmPackages.openmp ] ++ lib.optionals cudaSupport ( with cudaPackages; [ From 1461cd184c35f84a0e8c165ccb9950d7f2bf5027 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Sun, 13 Jul 2025 11:22:31 -0700 Subject: [PATCH 029/116] Revert "python3Packages.sentence-transformers: disable test that segfaults on Darwin" This reverts commit 2ae3d1aacf7520d853dd4ca8cbbc53a4394a5e0d. --- .../python-modules/sentence-transformers/default.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkgs/development/python-modules/sentence-transformers/default.nix b/pkgs/development/python-modules/sentence-transformers/default.nix index 1c4f1d5a2430..4a79c6daf465 100644 --- a/pkgs/development/python-modules/sentence-transformers/default.nix +++ b/pkgs/development/python-modules/sentence-transformers/default.nix @@ -1,6 +1,5 @@ { lib, - stdenv, buildPythonPackage, fetchFromGitHub, @@ -123,10 +122,6 @@ buildPythonPackage rec { "tests/test_pretrained_stsb.py" "tests/test_sentence_transformer.py" "tests/test_train_stsb.py" - ] - ++ lib.optionals stdenv.hostPlatform.isDarwin [ - # Segfault - "tests/test_sparse_tensor.py" ]; # Sentence-transformer needs a writable hf_home cache From 0e125f85d81d61bbc27157b211f0e87306e17f7d Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Sun, 13 Jul 2025 11:23:25 -0700 Subject: [PATCH 030/116] Revert "python3Packages.gpytorch: mark as broken due to underlying sklearn crashes" This reverts commit 5b56f1daaa0b55124fbe0880c8f433551fe61bfd. --- pkgs/development/python-modules/gpytorch/default.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/development/python-modules/gpytorch/default.nix b/pkgs/development/python-modules/gpytorch/default.nix index 10eb6d95dc86..08db11be0e4f 100644 --- a/pkgs/development/python-modules/gpytorch/default.nix +++ b/pkgs/development/python-modules/gpytorch/default.nix @@ -1,6 +1,5 @@ { lib, - stdenv, buildPythonPackage, fetchFromGitHub, jaxtyping, @@ -57,9 +56,6 @@ buildPythonPackage rec { "test_t_matmul_matrix" ]; - # Testing is broken on Darwin due to a `scikit-learn` issue, see https://github.com/NixOS/nixpkgs/issues/423831 - doCheck = !stdenv.hostPlatform.isDarwin; - meta = with lib; { description = "Highly efficient and modular implementation of Gaussian Processes, with GPU acceleration"; homepage = "https://gpytorch.ai"; From 20bab3e6d5a578dbc4f7d4afefc662f19a36113e Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Sun, 13 Jul 2025 11:24:40 -0700 Subject: [PATCH 031/116] python3Packages.sqlite-vec: re-enable on x86_64-darwin apparent intel build failure was triggered when building under Rosetta due to torch ARM issue. --- pkgs/development/python-modules/sqlite-vec/default.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/development/python-modules/sqlite-vec/default.nix b/pkgs/development/python-modules/sqlite-vec/default.nix index 7a389f10d40f..fa5786b24425 100644 --- a/pkgs/development/python-modules/sqlite-vec/default.nix +++ b/pkgs/development/python-modules/sqlite-vec/default.nix @@ -80,9 +80,5 @@ buildPythonPackage rec { meta = sqlite-vec-c.meta // { description = "Python bindings for sqlite-vec"; maintainers = [ lib.maintainers.sarahec ]; - badPlatforms = [ - # segfaults during test - "x86_64-darwin" - ]; }; } From d13f5db7e915963567f81f23da41a30131943991 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Sun, 13 Jul 2025 11:43:44 -0700 Subject: [PATCH 032/116] python3Packages.optuna-dashboard: disable tests that will not work on Darwin Tests cannot find numpy.float128 as it's not supported on 64-bit Darwin. --- .../development/python-modules/optuna-dashboard/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/optuna-dashboard/default.nix b/pkgs/development/python-modules/optuna-dashboard/default.nix index f24bc8dd0564..a5c2b932bcac 100644 --- a/pkgs/development/python-modules/optuna-dashboard/default.nix +++ b/pkgs/development/python-modules/optuna-dashboard/default.nix @@ -58,6 +58,12 @@ buildPythonPackage rec { streamlit ]; + disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ + # AttributeError: module 'numpy' has no attribute 'float128' ==> not available on 64-bit Darwin + "test_infer_sortable" + "test_serialize_numpy_floating" + ]; + # Disable tests that use playwright (needs network) disabledTestPaths = [ "e2e_tests/test_dashboard/test_usecases/test_preferential_optimization.py" From ff649083b3b20fd2644032d218288d1e9611c50a Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Mon, 14 Jul 2025 13:01:52 -0700 Subject: [PATCH 033/116] python3Packages.compressai: disable test that fails in the sandbox on Darwin Depends on optional osascript app which isn't in nixpkgs. --- pkgs/development/python-modules/compressai/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/compressai/default.nix b/pkgs/development/python-modules/compressai/default.nix index 2749d88def59..79de2d7596fd 100644 --- a/pkgs/development/python-modules/compressai/default.nix +++ b/pkgs/development/python-modules/compressai/default.nix @@ -98,6 +98,9 @@ buildPythonPackage rec { # Cause pytest to hang on Darwin after the tests are done "tests/test_eval_model.py" "tests/test_train.py" + + # fails in sandbox as it tries to launch a web browser (which fails due to missing `osascript`) + "tests/test_plot.py::test_plot[plotly-ms-ssim-rgb]" ]; meta = { From 73f686de629c0964b2eb65d3e32b7133d597c5d7 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Tue, 15 Jul 2025 21:49:26 -0700 Subject: [PATCH 034/116] python3Packages.pylance: disable test that hangs the build on Darwin --- pkgs/development/python-modules/pylance/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/pylance/default.nix b/pkgs/development/python-modules/pylance/default.nix index 758c3299f513..3213913fe641 100644 --- a/pkgs/development/python-modules/pylance/default.nix +++ b/pkgs/development/python-modules/pylance/default.nix @@ -129,6 +129,10 @@ buildPythonPackage rec { ++ lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) [ # OSError: LanceError(IO): Resources exhausted: Failed to allocate additional 1245184 bytes for ExternalSorter[0]... "test_merge_insert_large" + ] + ++ lib.optionals stdenv.hostPlatform.isDarwin [ + # Build hangs after all the tests are run due to a torch subprocess not exiting + "test_multiprocess_loading" ]; meta = { From 85038ff6aeb8fee76530ade86e060e5ca0307ccb Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Tue, 29 Jul 2025 15:32:26 -0700 Subject: [PATCH 035/116] python3Packages.torcheval: disable tests that fail under Darwin These throw IPv6 network errors and/or hang until timed out. --- .../python-modules/torcheval/default.nix | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/pkgs/development/python-modules/torcheval/default.nix b/pkgs/development/python-modules/torcheval/default.nix index aac1a987bf32..d3ffd678a761 100644 --- a/pkgs/development/python-modules/torcheval/default.nix +++ b/pkgs/development/python-modules/torcheval/default.nix @@ -136,6 +136,54 @@ buildPythonPackage { # -- tests/metrics/test_toolkit.py -- "tests/metrics/test_toolkit.py::MetricToolkitTest::test_metric_sync" "tests/metrics/test_toolkit.py::MetricCollectionToolkitTest::test_metric_collection_sync" + + # Cannot access local process over IPv6 (nodename nor servname provided) even with __darwinAllowLocalNetworking + # Will hang, or appear to hang, with an 5 minute (default) timeout per test + "tests/metrics/aggregation/test_auc.py" + "tests/metrics/aggregation/test_cat.py" + "tests/metrics/aggregation/test_max.py" + "tests/metrics/aggregation/test_mean.py" + "tests/metrics/aggregation/test_min.py" + "tests/metrics/aggregation/test_sum.py" + "tests/metrics/aggregation/test_throughput.py" + "tests/metrics/classification/test_accuracy.py" + "tests/metrics/classification/test_auprc.py" + "tests/metrics/classification/test_auroc.py" + "tests/metrics/classification/test_binned_auprc.py" + "tests/metrics/classification/test_binned_auroc.py" + "tests/metrics/classification/test_binned_precision_recall_curve.py" + "tests/metrics/classification/test_confusion_matrix.py" + "tests/metrics/classification/test_f1_score.py" + "tests/metrics/classification/test_normalized_entropy.py" + "tests/metrics/classification/test_precision_recall_curve.py" + "tests/metrics/classification/test_precision.py" + "tests/metrics/classification/test_recall_at_fixed_precision.py" + "tests/metrics/classification/test_recall.py" + "tests/metrics/functional/classification/test_auroc.py" + "tests/metrics/ranking/test_click_through_rate.py::TestClickThroughRate::test_ctr_with_valid_input" + "tests/metrics/ranking/test_hit_rate.py::TestHitRate::test_hitrate_with_valid_input" + "tests/metrics/ranking/test_reciprocal_rank.py::TestReciprocalRank::test_mrr_with_valid_input" + "tests/metrics/ranking/test_retrieval_precision.py::TestRetrievalPrecision::test_retrieval_precision_multiple_updates_1_query" + "tests/metrics/ranking/test_retrieval_precision.py::TestRetrievalPrecision::test_retrieval_precision_multiple_updates_n_queries_without_nan" + "tests/metrics/ranking/test_weighted_calibration.py::TestWeightedCalibration::test_weighted_calibration_with_valid_input" + "tests/metrics/regression/test_mean_squared_error.py" + "tests/metrics/regression/test_r2_score.py" + "tests/metrics/test_synclib.py::SynclibTest::test_gather_uneven_multidim" + "tests/metrics/test_synclib.py::SynclibTest::test_gather_uneven" + "tests/metrics/test_synclib.py::SynclibTest::test_numeric_sync_state" + "tests/metrics/test_synclib.py::SynclibTest::test_sync_list_length" + "tests/metrics/text/test_bleu.py::TestBleu::test_bleu_multiple_examples_per_update" + "tests/metrics/text/test_bleu.py::TestBleu::test_bleu_multiple_updates" + "tests/metrics/text/test_perplexity.py::TestPerplexity::test_perplexity_with_ignore_index" + "tests/metrics/text/test_perplexity.py::TestPerplexity::test_perplexity" + "tests/metrics/text/test_word_error_rate.py::TestWordErrorRate::test_word_error_rate_with_valid_input" + "tests/metrics/text/test_word_information_lost.py::TestWordInformationLost::test_word_information_lost" + "tests/metrics/text/test_word_information_preserved.py::TestWordInformationPreserved::test_word_information_preserved_with_valid_input" + "tests/metrics/window/test_auroc.py" + "tests/metrics/window/test_click_through_rate.py::TestClickThroughRate::test_ctr_with_valid_input" + "tests/metrics/window/test_mean_squared_error.py" + "tests/metrics/window/test_normalized_entropy.py::TestWindowedBinaryNormalizedEntropy::test_ne_with_valid_input" + "tests/metrics/window/test_weighted_calibration.py::TestWindowedWeightedCalibration::test_weighted_calibration_with_valid_input" ]; meta = { From bfd0010e4a8585993d12479c528c1e5665cf8c48 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 31 Jul 2025 06:36:41 +0000 Subject: [PATCH 036/116] colloid-gtk-theme: 2024-11-16 -> 2025-07-31 --- pkgs/by-name/co/colloid-gtk-theme/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/co/colloid-gtk-theme/package.nix b/pkgs/by-name/co/colloid-gtk-theme/package.nix index 7d64b3261e18..2d5e8d5b0774 100644 --- a/pkgs/by-name/co/colloid-gtk-theme/package.nix +++ b/pkgs/by-name/co/colloid-gtk-theme/package.nix @@ -57,13 +57,13 @@ lib.checkListOfEnum "colloid-gtk-theme: theme variants" stdenvNoCC.mkDerivation rec { inherit pname; - version = "2024-11-16"; + version = "2025-07-31"; src = fetchFromGitHub { owner = "vinceliuice"; repo = "colloid-gtk-theme"; rev = version; - hash = "sha256-70HDn87acG0me+zbXk6AoGmakY6VLuawq1ubgGcRZVk="; + hash = "sha256-0pXbeeBAkk6v2DBWfUYhWWdyrQhgr/JfDbhyS33maMM="; }; nativeBuildInputs = [ From 69cec1b8e2ac5dc65f4ee7aa867e7cd40ab6bc4a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 31 Jul 2025 10:34:56 +0000 Subject: [PATCH 037/116] mangojuice: 0.8.5 -> 0.8.6 --- pkgs/by-name/ma/mangojuice/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ma/mangojuice/package.nix b/pkgs/by-name/ma/mangojuice/package.nix index f11a268a7a99..4f98f7961fff 100644 --- a/pkgs/by-name/ma/mangojuice/package.nix +++ b/pkgs/by-name/ma/mangojuice/package.nix @@ -25,13 +25,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "mangojuice"; - version = "0.8.5"; + version = "0.8.6"; src = fetchFromGitHub { owner = "radiolamp"; repo = "mangojuice"; tag = finalAttrs.version; - hash = "sha256-pqtzNJBMoKbF48JoIrbcJX78S+e3tb+otiG85YbBKYk="; + hash = "sha256-EVjKO+03o8es2t2/K1QuUIhXey7+2VNF37yXiMrv4o4="; }; patches = [ From e1d0da374b9b91372f4c2c2cef6d753be4d0bba7 Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Thu, 31 Jul 2025 12:29:25 +0100 Subject: [PATCH 038/116] keymap-drawer: add meta.changelog --- pkgs/development/python-modules/keymap-drawer/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/keymap-drawer/default.nix b/pkgs/development/python-modules/keymap-drawer/default.nix index 0fe1961748d7..30d6188f0d78 100644 --- a/pkgs/development/python-modules/keymap-drawer/default.nix +++ b/pkgs/development/python-modules/keymap-drawer/default.nix @@ -60,6 +60,7 @@ buildPythonPackage { meta = { description = "Module and CLI tool to help parse and draw keyboard layouts"; homepage = "https://github.com/caksoylar/keymap-drawer"; + changelog = "https://github.com/caksoylar/keymap-drawer/releases/tag/v${version}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ MattSturgeon From c3bbb7b8cca403a6a627ea3ee658a3152fb94604 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 31 Jul 2025 12:38:10 +0000 Subject: [PATCH 039/116] kyverno: 1.14.4 -> 1.15.0 --- pkgs/by-name/ky/kyverno/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ky/kyverno/package.nix b/pkgs/by-name/ky/kyverno/package.nix index d87efef20e8b..767f103488d5 100644 --- a/pkgs/by-name/ky/kyverno/package.nix +++ b/pkgs/by-name/ky/kyverno/package.nix @@ -9,13 +9,13 @@ buildGoModule rec { pname = "kyverno"; - version = "1.14.4"; + version = "1.15.0"; src = fetchFromGitHub { owner = "kyverno"; repo = "kyverno"; rev = "v${version}"; - hash = "sha256-hOYNHJfK3EMe6oC3ucymcK8uyu07asRZjYJxm4fN6x8="; + hash = "sha256-NGyNB+N80oXxgL3bg/E1DmeRYYNxKsDLIjfUwtVGk7A="; }; ldflags = [ @@ -26,7 +26,7 @@ buildGoModule rec { "-X github.com/kyverno/kyverno/pkg/version.BuildTime=1970-01-01_00:00:00" ]; - vendorHash = "sha256-HdHK70AELKdeVSyP1S2yHZad3vooRDDdxAOnzN6s0nQ="; + vendorHash = "sha256-AaQ4/yrLNqLFBVRuDVjRHiNE4Bxb0kTUG7WeNw+gpZo="; subPackages = [ "cmd/cli/kubectl-kyverno" ]; From 6e4d454b06d19899d47892fa10c805700a7504b0 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Tue, 29 Jul 2025 23:06:51 +0200 Subject: [PATCH 040/116] python3Packages.flax: 0.10.7 -> 0.11.0 Diff: https://github.com/google/flax/compare/refs/tags/v0.10.7...refs/tags/v0.11.0 Changelog: https://github.com/google/flax/releases/tag/v0.11.0 --- pkgs/development/python-modules/flax/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/flax/default.nix b/pkgs/development/python-modules/flax/default.nix index bad48ac61bc5..ce7938805cca 100644 --- a/pkgs/development/python-modules/flax/default.nix +++ b/pkgs/development/python-modules/flax/default.nix @@ -38,14 +38,14 @@ buildPythonPackage rec { pname = "flax"; - version = "0.10.7"; + version = "0.11.0"; pyproject = true; src = fetchFromGitHub { owner = "google"; repo = "flax"; tag = "v${version}"; - hash = "sha256-T/KhlvliesBW40kyToxOkyX8PLl0acMQO+FnOKqfQJo="; + hash = "sha256-Epc7o8JoDkvNMbSH4D0cGyNJtg88qsDDbE881UVBxX4="; }; build-system = [ From 87553253bf9c29b0cfd5f6a6a4721d8d32d915f6 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 31 Jul 2025 14:38:48 +0200 Subject: [PATCH 041/116] python3Packages.numpyro: skip newly failing tests https://github.com/pyro-ppl/numpyro/issues/2055 --- pkgs/development/python-modules/numpyro/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/numpyro/default.nix b/pkgs/development/python-modules/numpyro/default.nix index 5546586b7d07..da26a2cb9c49 100644 --- a/pkgs/development/python-modules/numpyro/default.nix +++ b/pkgs/development/python-modules/numpyro/default.nix @@ -92,6 +92,11 @@ buildPythonPackage rec { # ValueError: compiling computation that requires 2 logical devices, but only 1 XLA devices are available (num_replicas=2) "test_chain" + + # Failing since flax==0.11.0 + # KeyError: "No RngStream named 'dropout' found in Rngs." + # https://github.com/pyro-ppl/numpyro/issues/2055 + "test_nnx_state_dropout_smoke" ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ # AssertionError: Not equal to tolerance rtol=0.06, atol=0 From 95629cfe044c29fd6c8e87ca62fe85a78c7df46b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 31 Jul 2025 13:00:04 +0000 Subject: [PATCH 042/116] loco: 0.16.1 -> 0.16.2 --- pkgs/by-name/lo/loco/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/lo/loco/package.nix b/pkgs/by-name/lo/loco/package.nix index ab6415d1ef47..88dc7865dfbb 100644 --- a/pkgs/by-name/lo/loco/package.nix +++ b/pkgs/by-name/lo/loco/package.nix @@ -6,14 +6,14 @@ }: rustPlatform.buildRustPackage rec { pname = "loco"; - version = "0.16.1"; + version = "0.16.2"; src = fetchCrate { inherit pname version; - hash = "sha256-5mg2caScI1sxKtadw8IP/yxDOdPN+RRqHXdsWr2R0FY="; + hash = "sha256-yctOGUfKd1zaIArtHESYEr1q79ZrJqL7H6bvpAFrE+8="; }; - cargoHash = "sha256-SFNaTo6fV7xhmkqK8SuFOjXeDDYN4+KTbF9DfpEX+dI="; + cargoHash = "sha256-IdYicJ7ZIoVOQU91S8yIPYGeY+DaeAMztGOmriTGW38="; #Skip trycmd integration tests checkFlags = [ "--skip=cli_tests" ]; From 36660b8ab3263f875b20c07bd2fdbd143c84aee1 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 31 Jul 2025 13:43:23 +0000 Subject: [PATCH 043/116] python3Packages.great-tables: 0.17.0 -> 0.18.0 --- pkgs/development/python-modules/great-tables/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/great-tables/default.nix b/pkgs/development/python-modules/great-tables/default.nix index 624fd58d43a7..6dc61bd936e7 100644 --- a/pkgs/development/python-modules/great-tables/default.nix +++ b/pkgs/development/python-modules/great-tables/default.nix @@ -34,14 +34,14 @@ buildPythonPackage rec { pname = "great-tables"; - version = "0.17.0"; + version = "0.18.0"; pyproject = true; src = fetchFromGitHub { owner = "posit-dev"; repo = "great-tables"; tag = "v${version}"; - hash = "sha256-2XTGLlhzn1gaj1oKPoSdmMrc6E97DsCWZL6Zpa0o8U0="; + hash = "sha256-AuhcIQGBroWa2+Rg6qLTtB4ulq+vvCoouPcTZcZhnbQ="; }; build-system = [ From c3877a3a8c84488ca1d7ebbc4a3dd11709f61126 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 31 Jul 2025 13:44:01 +0000 Subject: [PATCH 044/116] jailer: 16.7 -> 16.7.1 --- pkgs/by-name/ja/jailer/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ja/jailer/package.nix b/pkgs/by-name/ja/jailer/package.nix index f28ad2b6d2f7..de40f0bbe8ec 100644 --- a/pkgs/by-name/ja/jailer/package.nix +++ b/pkgs/by-name/ja/jailer/package.nix @@ -14,13 +14,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "jailer"; - version = "16.7"; + version = "16.7.1"; src = fetchFromGitHub { owner = "Wisser"; repo = "Jailer"; tag = "v${finalAttrs.version}"; - hash = "sha256-lHBthOZu4utJd2X8cTJ7HCp8zLs0su78RIdf/QBbSJk="; + hash = "sha256-76l8f8CKUxbpR3xeWtbcUt67c44W/2Kv9tKDfvHBCLo="; }; nativeBuildInputs = [ From 2461db0b49d26b2cfb6d8757242f45dcab11dcd6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 31 Jul 2025 14:27:04 +0000 Subject: [PATCH 045/116] all-the-package-names: 2.0.2156 -> 2.0.2159 --- pkgs/by-name/al/all-the-package-names/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/al/all-the-package-names/package.nix b/pkgs/by-name/al/all-the-package-names/package.nix index 2fb9dd0354cd..2d958cdd2c53 100644 --- a/pkgs/by-name/al/all-the-package-names/package.nix +++ b/pkgs/by-name/al/all-the-package-names/package.nix @@ -7,16 +7,16 @@ buildNpmPackage rec { pname = "all-the-package-names"; - version = "2.0.2156"; + version = "2.0.2159"; src = fetchFromGitHub { owner = "nice-registry"; repo = "all-the-package-names"; tag = "v${version}"; - hash = "sha256-XdMapdtcuZhrF/IacXahxCbpgu7f5mjtKxu5whebDvM="; + hash = "sha256-7c4cxGSBc60WTLjRptb8VbTf279BxDgVOiVaP4C7pKk="; }; - npmDepsHash = "sha256-GUs0JyCYg5lIXZ9i9F+45myGtc6zYYmZ5YTxwcjOVUo="; + npmDepsHash = "sha256-fDQnEjPefRBbpCX21vZrJ3Y8y7d3PgM54IfPJbb44ao="; passthru.updateScript = nix-update-script { }; From 2b0d76cc4b185798daac27be10059659a0772efc Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 31 Jul 2025 14:38:52 +0000 Subject: [PATCH 046/116] bosh-cli: 7.9.7 -> 7.9.8 --- pkgs/by-name/bo/bosh-cli/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/bo/bosh-cli/package.nix b/pkgs/by-name/bo/bosh-cli/package.nix index a6c40f7f20ec..c7290e7f6b6f 100644 --- a/pkgs/by-name/bo/bosh-cli/package.nix +++ b/pkgs/by-name/bo/bosh-cli/package.nix @@ -9,13 +9,13 @@ buildGoModule rec { pname = "bosh-cli"; - version = "7.9.7"; + version = "7.9.8"; src = fetchFromGitHub { owner = "cloudfoundry"; repo = "bosh-cli"; rev = "v${version}"; - sha256 = "sha256-Y3wk05IeWoH5YCrA+CJEtqvwCUxAvYdoYD+qDwTJo5Q="; + sha256 = "sha256-PCkP+IUjVlgcNHmBtUO2kuML8+dk4VT2ybtqsKbCzZo="; }; vendorHash = null; From 783d2d64c9ca8b056ddf3de4701d05f75add1a73 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 31 Jul 2025 15:06:45 +0000 Subject: [PATCH 047/116] python3Packages.pytenable: 1.8.1 -> 1.8.2 --- pkgs/development/python-modules/pytenable/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pytenable/default.nix b/pkgs/development/python-modules/pytenable/default.nix index 752621713dd4..eb612b1e312d 100644 --- a/pkgs/development/python-modules/pytenable/default.nix +++ b/pkgs/development/python-modules/pytenable/default.nix @@ -28,7 +28,7 @@ buildPythonPackage rec { pname = "pytenable"; - version = "1.8.1"; + version = "1.8.2"; pyproject = true; disabled = pythonOlder "3.10"; @@ -37,7 +37,7 @@ buildPythonPackage rec { owner = "tenable"; repo = "pyTenable"; tag = version; - hash = "sha256-ayueOCgbn90vFtDfKtfOhFvWX5p3nsrg7sBQP0QBNaQ="; + hash = "sha256-21vKR9W2Bpi+9YfmMQ+vgQIGchb7cYA2Sx493/XuYU0="; }; pythonRelaxDeps = [ From 7bbaebf4f26f7fd64b1d20ea9a4230790499a8de Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 31 Jul 2025 15:08:47 +0000 Subject: [PATCH 048/116] python3Packages.mmh3: 5.1.0 -> 5.2.0 --- pkgs/development/python-modules/mmh3/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/mmh3/default.nix b/pkgs/development/python-modules/mmh3/default.nix index 0917aa96b4d0..16cf9a30bed5 100644 --- a/pkgs/development/python-modules/mmh3/default.nix +++ b/pkgs/development/python-modules/mmh3/default.nix @@ -8,14 +8,14 @@ buildPythonPackage rec { pname = "mmh3"; - version = "5.1.0"; + version = "5.2.0"; pyproject = true; src = fetchFromGitHub { owner = "hajimes"; repo = "mmh3"; tag = "v${version}"; - hash = "sha256-56LrJuoBvhGgw+w4GIQ0XEQtf5oR87el+gZxgBYkyx0="; + hash = "sha256-55NWdPQIPY40oJo9VxM4HsUUXQJimIf6nqWmacc57dE="; }; build-system = [ setuptools ]; @@ -27,7 +27,7 @@ buildPythonPackage rec { meta = { description = "Python wrapper for MurmurHash3, a set of fast and robust hash functions"; homepage = "https://github.com/hajimes/mmh3"; - changelog = "https://github.com/hajimes/mmh3/blob/v${version}/CHANGELOG.md"; + changelog = "https://github.com/hajimes/mmh3/blob/${src.tag}/CHANGELOG.md"; license = lib.licenses.cc0; maintainers = [ lib.maintainers.sarahec ]; }; From bc0d778483135f3c4640e51a7df275663c8bd559 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Thu, 31 Jul 2025 23:56:50 +0800 Subject: [PATCH 049/116] gnome-online-accounts-gtk: 3.50.6 -> 3.50.7 https://github.com/xapp-project/gnome-online-accounts-gtk/compare/3.50.6...3.50.7 --- pkgs/by-name/gn/gnome-online-accounts-gtk/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/gn/gnome-online-accounts-gtk/package.nix b/pkgs/by-name/gn/gnome-online-accounts-gtk/package.nix index 35397182758d..ef4e232f9b7d 100644 --- a/pkgs/by-name/gn/gnome-online-accounts-gtk/package.nix +++ b/pkgs/by-name/gn/gnome-online-accounts-gtk/package.nix @@ -15,13 +15,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "gnome-online-accounts-gtk"; - version = "3.50.6"; + version = "3.50.7"; src = fetchFromGitHub { owner = "xapp-project"; repo = "gnome-online-accounts-gtk"; rev = finalAttrs.version; - hash = "sha256-/d6ezujW/yeZV95zv/12ttUEUliZARtEGFoCXe6Dp/I="; + hash = "sha256-CFPaCx3tfOIoovm9AXofBdZzl/Rxiz5RVOrVKCuxZbI="; }; nativeBuildInputs = [ From 2f4801eb0d6ed65942cf83d475d059f176c6bb82 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Fri, 1 Aug 2025 00:06:40 +0800 Subject: [PATCH 050/116] bulky: 3.7 -> 3.8 https://github.com/linuxmint/bulky/compare/3.7...3.8 --- pkgs/by-name/bu/bulky/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/bu/bulky/package.nix b/pkgs/by-name/bu/bulky/package.nix index 8f3d19e2b1ea..6034d7b82242 100644 --- a/pkgs/by-name/bu/bulky/package.nix +++ b/pkgs/by-name/bu/bulky/package.nix @@ -14,13 +14,13 @@ stdenv.mkDerivation rec { pname = "bulky"; - version = "3.7"; + version = "3.8"; src = fetchFromGitHub { owner = "linuxmint"; repo = "bulky"; rev = version; - hash = "sha256-8sSn/EXLs7UC4M6cNKtVUNwrHeV4dt3mvUCxQQQRaj0="; + hash = "sha256-LVrVgfYCcfaIFDPQu8cFr2+KkzXboDSjPwM5UIP4G9c="; }; nativeBuildInputs = [ From d61d772ba37a95468bde2e45b3bfd5788fe42a90 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Fri, 1 Aug 2025 00:06:46 +0800 Subject: [PATCH 051/116] folder-color-switcher: 1.6.7 -> 1.6.8 https://github.com/linuxmint/folder-color-switcher/compare/5bd94d3ffdb9585c09832f0beabb14f0e67e8d58...d135f29d688d89a0e7b48acec9e08738c7976ee1 --- pkgs/by-name/fo/folder-color-switcher/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/fo/folder-color-switcher/package.nix b/pkgs/by-name/fo/folder-color-switcher/package.nix index ebaad510b63f..616a02ae13a4 100644 --- a/pkgs/by-name/fo/folder-color-switcher/package.nix +++ b/pkgs/by-name/fo/folder-color-switcher/package.nix @@ -8,14 +8,14 @@ stdenvNoCC.mkDerivation { pname = "folder-color-switcher"; - version = "1.6.7"; + version = "1.6.8"; src = fetchFromGitHub { owner = "linuxmint"; repo = "folder-color-switcher"; # They don't really do tags, this is just a named commit. - rev = "5bd94d3ffdb9585c09832f0beabb14f0e67e8d58"; - hash = "sha256-77+b7yVcTvBjtmXGOUIrh88IaxvCiBNM+hbZoN0+zoI="; + rev = "d135f29d688d89a0e7b48acec9e08738c7976ee1"; + hash = "sha256-3EFnQxTYcJLGjfAzZNS7pgVDUwuU3juOAwUyaKOHemI="; }; nativeBuildInputs = [ From afbc1e5b785981e542d6ec8c16987e2b6c2d4177 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Fri, 1 Aug 2025 00:06:54 +0800 Subject: [PATCH 052/116] pix: 3.4.5 -> 3.4.6 https://github.com/linuxmint/pix/compare/3.4.5...3.4.6 --- pkgs/by-name/pi/pix/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/pi/pix/package.nix b/pkgs/by-name/pi/pix/package.nix index 87066c993e65..3ee81efe9e33 100644 --- a/pkgs/by-name/pi/pix/package.nix +++ b/pkgs/by-name/pi/pix/package.nix @@ -34,13 +34,13 @@ stdenv.mkDerivation rec { pname = "pix"; - version = "3.4.5"; + version = "3.4.6"; src = fetchFromGitHub { owner = "linuxmint"; repo = "pix"; rev = version; - hash = "sha256-c/+NQHvscW/XE49Twmg1Rk1IfsjReCtRQWffobZtgTs="; + hash = "sha256-jlaqlA3akRNnBPTdtkWl+0NXqFbYw9uJKRfE/oTJMSg="; }; nativeBuildInputs = [ From 76aa7519c2260031cc50020af124d02acd9af8d4 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Fri, 1 Aug 2025 00:06:55 +0800 Subject: [PATCH 053/116] warpinator: 1.8.9 -> 1.8.10 https://github.com/linuxmint/warpinator/compare/1.8.9...1.8.10 --- pkgs/by-name/wa/warpinator/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/wa/warpinator/package.nix b/pkgs/by-name/wa/warpinator/package.nix index 9e3a6bb0dea9..61e5c92ac7fa 100644 --- a/pkgs/by-name/wa/warpinator/package.nix +++ b/pkgs/by-name/wa/warpinator/package.nix @@ -39,13 +39,13 @@ let in stdenv.mkDerivation rec { pname = "warpinator"; - version = "1.8.9"; + version = "1.8.10"; src = fetchFromGitHub { owner = "linuxmint"; repo = "warpinator"; rev = version; - hash = "sha256-/BRL0TT0zLjrL3ZcDnNqlHHMizirx8wQd9R4NT+fMqI="; + hash = "sha256-OSZYjCnFIHmWCwVcWP1MLmezt5HL4Njf0WMyCRmPP58="; }; nativeBuildInputs = [ From 50cfa9d04da8c5a9922504e8dea4901b13b1c35e Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Fri, 1 Aug 2025 00:06:56 +0800 Subject: [PATCH 054/116] xapp: 2.8.9 -> 2.8.11 https://github.com/linuxmint/xapp/compare/2.8.9...2.8.11 --- pkgs/by-name/xa/xapp/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/xa/xapp/package.nix b/pkgs/by-name/xa/xapp/package.nix index 5e4ce77f2336..2962ed6d683b 100644 --- a/pkgs/by-name/xa/xapp/package.nix +++ b/pkgs/by-name/xa/xapp/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { pname = "xapp"; - version = "2.8.9"; + version = "2.8.11"; outputs = [ "out" @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { owner = "linuxmint"; repo = "xapp"; rev = version; - hash = "sha256-ub5OwtB+LR86gt17342cmgvoWJu2kYzkWhl9V1QVCzQ="; + hash = "sha256-dmMjGWjq0s4MkobeqssbG5G3+gHRqA6lmu95uJX3RJY="; }; # Recommended by upstream, which enables the build of xapp-debug. From c339af0e69662a804f4f790df147e79c6612981c Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Fri, 1 Aug 2025 00:06:57 +0800 Subject: [PATCH 055/116] xreader: 4.2.7 -> 4.2.8 https://github.com/linuxmint/xreader/compare/4.2.7...4.2.8 --- pkgs/by-name/xr/xreader/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/xr/xreader/package.nix b/pkgs/by-name/xr/xreader/package.nix index 81ee70af9020..90d0a2544a70 100644 --- a/pkgs/by-name/xr/xreader/package.nix +++ b/pkgs/by-name/xr/xreader/package.nix @@ -36,13 +36,13 @@ stdenv.mkDerivation rec { pname = "xreader"; - version = "4.2.7"; + version = "4.2.8"; src = fetchFromGitHub { owner = "linuxmint"; repo = "xreader"; rev = version; - hash = "sha256-APBVrrvLS5CFtfi0UlIDtYyg4pfCS8qLc2a4KDOU1Zk="; + hash = "sha256-Q/Hx43B+LmoAWzHPcz+kETjLzKyrO0Sn4gu9PmGfyUI="; }; nativeBuildInputs = [ From 59658537eb6ea705db27e844480bc4eaf47b1e6b Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Fri, 1 Aug 2025 00:06:58 +0800 Subject: [PATCH 056/116] xviewer: 3.4.9 -> 3.4.10 https://github.com/linuxmint/xviewer/compare/3.4.9...3.4.10 --- pkgs/by-name/xv/xviewer/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/xv/xviewer/package.nix b/pkgs/by-name/xv/xviewer/package.nix index 5817fca0f464..bcc96b762885 100644 --- a/pkgs/by-name/xv/xviewer/package.nix +++ b/pkgs/by-name/xv/xviewer/package.nix @@ -28,13 +28,13 @@ stdenv.mkDerivation rec { pname = "xviewer"; - version = "3.4.9"; + version = "3.4.10"; src = fetchFromGitHub { owner = "linuxmint"; repo = "xviewer"; rev = version; - hash = "sha256-WYGX57PUX+WUVVZ1F+oE3QNwKB7ii5FlJdQ/3j5heUA="; + hash = "sha256-ELjr6W1Hqpvc7ChOrLhVUw9YPRoS/JjXQMNBrCn7JOQ="; }; nativeBuildInputs = [ From 45a5d526a5bd046ecd49f6cabcf419d1917ab42d Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Fri, 1 Aug 2025 00:06:59 +0800 Subject: [PATCH 057/116] hypnotix: 5.0 -> 5.1 https://github.com/linuxmint/hypnotix/compare/5.0...5.1 --- pkgs/by-name/hy/hypnotix/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/hy/hypnotix/package.nix b/pkgs/by-name/hy/hypnotix/package.nix index 33bcda56b3bd..38f51702037f 100644 --- a/pkgs/by-name/hy/hypnotix/package.nix +++ b/pkgs/by-name/hy/hypnotix/package.nix @@ -15,13 +15,13 @@ stdenv.mkDerivation rec { pname = "hypnotix"; - version = "5.0"; + version = "5.1"; src = fetchFromGitHub { owner = "linuxmint"; repo = "hypnotix"; rev = version; - hash = "sha256-nBt+eGzUQaRO2IaEkvhdEZcVuKpZFEqIYSdVKSO1l4M="; + hash = "sha256-XXfZDFvHrGk+RFSQPldI/G4xhPm8lafZyBVCDtzvyoI="; }; patches = [ From d814cba1def85957e012dbb2fdb72cd0a1c3e543 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Fri, 1 Aug 2025 00:09:51 +0800 Subject: [PATCH 058/116] lightdm-slick-greeter: 2.2.0 -> 2.2.1 https://github.com/linuxmint/slick-greeter/compare/2.2.0...2.2.1 --- pkgs/by-name/li/lightdm-slick-greeter/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/li/lightdm-slick-greeter/package.nix b/pkgs/by-name/li/lightdm-slick-greeter/package.nix index 6d5ff8194811..38a775254e5a 100644 --- a/pkgs/by-name/li/lightdm-slick-greeter/package.nix +++ b/pkgs/by-name/li/lightdm-slick-greeter/package.nix @@ -22,13 +22,13 @@ stdenv.mkDerivation rec { pname = "lightdm-slick-greeter"; - version = "2.2.0"; + version = "2.2.1"; src = fetchFromGitHub { owner = "linuxmint"; repo = "slick-greeter"; rev = version; - hash = "sha256-xuNUCS8v8XXidXNT/DP+sckdadUTeflFK34ZDpF1iyc="; + hash = "sha256-AErY8Gy1AkYY/vpXoSE8zhyJd/nboMw+9BO3j6N7CNc="; }; nativeBuildInputs = [ From 641d45ac70982c04ec3d9fa416e3dcee54213c50 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Fri, 1 Aug 2025 00:07:01 +0800 Subject: [PATCH 059/116] sticky: 1.25 -> 1.26 https://github.com/linuxmint/sticky/compare/1.25...1.26 --- pkgs/by-name/st/sticky/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/st/sticky/package.nix b/pkgs/by-name/st/sticky/package.nix index 42c8ad6666ad..90740339153b 100644 --- a/pkgs/by-name/st/sticky/package.nix +++ b/pkgs/by-name/st/sticky/package.nix @@ -16,13 +16,13 @@ stdenv.mkDerivation rec { pname = "sticky"; - version = "1.25"; + version = "1.26"; src = fetchFromGitHub { owner = "linuxmint"; repo = "sticky"; rev = version; - hash = "sha256-lM9R89CNj8ZXeOciwn/ax9wcsf3J4yPmzrgAntp8Fsg="; + hash = "sha256-pwY5MO3xKgRQa1zYfcO02z6kOMofOFWqTUrwEYzkAEo="; }; postPatch = '' From 822b89f71e1b7a9eb333b70edca0a5969835a0b2 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Fri, 1 Aug 2025 00:07:03 +0800 Subject: [PATCH 060/116] xed-editor: 3.8.2 -> 3.8.3 https://github.com/linuxmint/xed/compare/3.8.2...3.8.3 --- pkgs/by-name/xe/xed-editor/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/xe/xed-editor/package.nix b/pkgs/by-name/xe/xed-editor/package.nix index 6809ecac4198..2c7f8c774074 100644 --- a/pkgs/by-name/xe/xed-editor/package.nix +++ b/pkgs/by-name/xe/xed-editor/package.nix @@ -21,13 +21,13 @@ stdenv.mkDerivation rec { pname = "xed-editor"; - version = "3.8.2"; + version = "3.8.3"; src = fetchFromGitHub { owner = "linuxmint"; repo = "xed"; rev = version; - hash = "sha256-LSAOo6lPm6CQdTNxfAIthul9I9VnWpbEo1vOnKN7SNU="; + hash = "sha256-bNnxQOYDBS/pNaBwvmrt/VAya/m7t5H40lJkFevufUE="; }; patches = [ From f7ab04ac4306ea0331c3cb37d2e97119efe56af4 Mon Sep 17 00:00:00 2001 From: Claude Doppler Date: Thu, 31 Jul 2025 18:59:35 +0200 Subject: [PATCH 061/116] squid: remove knownVulnerabilities for 7.0+ In the past, it has been brought up that Squid had many security vulnerabilities (see https://megamansec.github.io/Squid-Security-Audit/). As of version 7.0, all of them have been solved, as tracked in their GitHub Security page: https://github.com/squid-cache/squid/security --- pkgs/by-name/sq/squid/package.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/sq/squid/package.nix b/pkgs/by-name/sq/squid/package.nix index e7d3c325e1ac..569c9f556f2e 100644 --- a/pkgs/by-name/sq/squid/package.nix +++ b/pkgs/by-name/sq/squid/package.nix @@ -101,8 +101,10 @@ stdenv.mkDerivation (finalAttrs: { license = licenses.gpl2Plus; platforms = platforms.linux; maintainers = with maintainers; [ raskin ]; - knownVulnerabilities = [ - "Squid has multiple unresolved security vulnerabilities, for more information see https://megamansec.github.io/Squid-Security-Audit/" - ]; + # In the past, it has been brought up that Squid had many security vulnerabilities + # (see https://megamansec.github.io/Squid-Security-Audit/). As of version 7.0, + # all of them have been solved, as tracked in their GitHub Security page: + # https://github.com/squid-cache/squid/security + knownVulnerabilities = [ ]; }; }) From f008d575967fbdd7a5854d35e3d2db571a13a82e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 31 Jul 2025 17:38:23 +0000 Subject: [PATCH 062/116] python3Packages.pyshp: 2.4.0 -> 2.4.1 --- pkgs/development/python-modules/pyshp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyshp/default.nix b/pkgs/development/python-modules/pyshp/default.nix index 05ebc0c376d7..623fbebfb6d7 100644 --- a/pkgs/development/python-modules/pyshp/default.nix +++ b/pkgs/development/python-modules/pyshp/default.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "pyshp"; - version = "2.4.0"; + version = "2.4.1"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -17,7 +17,7 @@ buildPythonPackage rec { owner = "GeospatialPython"; repo = "pyshp"; tag = version; - hash = "sha256-q1++2pifLZWc562m5cKoL2jLWM4lOnIwEAOqzKArh+w="; + hash = "sha256-NBZCqCbrCUIowj/EwWfC1vNC1fyNdg7EC06RRi6pul0="; }; nativeCheckInputs = [ pytestCheckHook ]; From 69666c959408090dc673f170e174734ad5ca2df7 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 31 Jul 2025 20:34:41 +0000 Subject: [PATCH 063/116] python3Packages.motionblinds: 0.6.29 -> 0.6.30 --- pkgs/development/python-modules/motionblinds/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/motionblinds/default.nix b/pkgs/development/python-modules/motionblinds/default.nix index 615bc9364d60..822aa5bcc0e6 100644 --- a/pkgs/development/python-modules/motionblinds/default.nix +++ b/pkgs/development/python-modules/motionblinds/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "motionblinds"; - version = "0.6.29"; + version = "0.6.30"; pyproject = true; disabled = pythonOlder "3.7"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "starkillerOG"; repo = "motion-blinds"; tag = version; - hash = "sha256-oxBdi5NFotvSVN3b9Rno2RGFiZxB7JAKvdiY4t7L8rQ="; + hash = "sha256-xV9od7xTKBBE4f4Mqg57Mp0MXO8/lG+bBKzG+jv6gf4="; }; build-system = [ setuptools ]; @@ -33,7 +33,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python library for interfacing with Motion Blinds"; homepage = "https://github.com/starkillerOG/motion-blinds"; - changelog = "https://github.com/starkillerOG/motion-blinds/releases/tag/${version}"; + changelog = "https://github.com/starkillerOG/motion-blinds/releases/tag/${src.tag}"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; }; From 03b540678e105ca625e51e4488fc5694483fe937 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 31 Jul 2025 21:15:10 +0000 Subject: [PATCH 064/116] terraform-providers.opentelekomcloud: 1.36.43 -> 1.36.44 --- .../networking/cluster/terraform-providers/providers.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 4d1928c1636c..2e9625ec3ab8 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -985,13 +985,13 @@ "vendorHash": "sha256-AlB9tC3KejgUAjjT2pY7Q2mTS/AV4QRusSnyPiOheXE=" }, "opentelekomcloud": { - "hash": "sha256-HbtNk5UAr+q09mOICkKzh9wIP0HM9MFVVR6gEIBdnvs=", + "hash": "sha256-lBaer+ZI4kYHocgLlDDOVJnr3EwVhLEHO9JXqbLcH9E=", "homepage": "https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud", "owner": "opentelekomcloud", "repo": "terraform-provider-opentelekomcloud", - "rev": "v1.36.43", + "rev": "v1.36.44", "spdx": "MPL-2.0", - "vendorHash": "sha256-9ese4fUPQifxbvcK6QiSIet++WFaK9XuyBv6oJiIOGA=" + "vendorHash": "sha256-+OT7y7YN8xT9MJqzVGlGxR1cEK6PYSNZLeSVNp9yOvI=" }, "openwrt": { "hash": "sha256-z78IceF2VJtiQpVqC+rTUDsph73LZawIK+az3rEhljA=", From a8a28eec8532e82ea1a5ac55bd5c268199711aec Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 31 Jul 2025 21:30:49 +0000 Subject: [PATCH 065/116] halloy: 2025.2 -> 2025.8 --- pkgs/by-name/ha/halloy/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ha/halloy/package.nix b/pkgs/by-name/ha/halloy/package.nix index 949b38215af7..8d237bffd68c 100644 --- a/pkgs/by-name/ha/halloy/package.nix +++ b/pkgs/by-name/ha/halloy/package.nix @@ -18,16 +18,16 @@ rustPlatform.buildRustPackage rec { pname = "halloy"; - version = "2025.2"; + version = "2025.8"; src = fetchFromGitHub { owner = "squidowl"; repo = "halloy"; tag = version; - hash = "sha256-ijSUGiAowxSqYwH3OxSWiGvm99n88ETJxAFn5x4m/BE="; + hash = "sha256-Jtr1/MDR6pAaagVdhR2HZM91PTEPaQkDYMmALIWkHFU="; }; - cargoHash = "sha256-j4lx3sSQZ7BKl+d5nFJQkMhgQWjn0xkNNCWMlbKLwVQ="; + cargoHash = "sha256-HseKOow4BjiPsGmwslZqBlvCoreY2BcnBu3BHg5965c="; nativeBuildInputs = [ copyDesktopItems From b1dffd566c3087cfde2b1d3e60a215b88652bfde Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 31 Jul 2025 21:52:26 +0000 Subject: [PATCH 066/116] lazysql: 0.3.8 -> 0.4.0 --- pkgs/by-name/la/lazysql/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/la/lazysql/package.nix b/pkgs/by-name/la/lazysql/package.nix index 346915c4ed1c..1987fc6b9b33 100644 --- a/pkgs/by-name/la/lazysql/package.nix +++ b/pkgs/by-name/la/lazysql/package.nix @@ -11,13 +11,13 @@ buildGoModule rec { pname = "lazysql"; - version = "0.3.8"; + version = "0.4.0"; src = fetchFromGitHub { owner = "jorgerojas26"; repo = "lazysql"; rev = "v${version}"; - hash = "sha256-aRySSDNqxdu4kZRohvG/PmOK3Uipvnw9DctJ8h5vl2g="; + hash = "sha256-XQjdMmHVrNzfQN/uFQFxGK9LwnRh1IkAvRQSDcAYWXo="; }; vendorHash = "sha256-LLOUTml/mz7edCUy82k+S5PfpFovgUTQr0BoQQXiVGs="; From 4690f02f33478f121a55cf710afcd5e0c522efb5 Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Thu, 31 Jul 2025 12:21:36 +0100 Subject: [PATCH 067/116] keymap-drawer: 0.22.0 -> 0.22.1 https://github.com/caksoylar/keymap-drawer/releases/tag/v0.22.1 Relax the tree-sitter-devicetree dependency that is pinned to 0.14.0 upstream, but is packaged as 0.25.6 in nixpkgs. IIUC, nixpkgs maintains its own tree-sitter python bindings, so package versions do not match up with the PyPi equivalent. --- pkgs/development/python-modules/keymap-drawer/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/keymap-drawer/default.nix b/pkgs/development/python-modules/keymap-drawer/default.nix index 30d6188f0d78..3591f44588fb 100644 --- a/pkgs/development/python-modules/keymap-drawer/default.nix +++ b/pkgs/development/python-modules/keymap-drawer/default.nix @@ -18,7 +18,7 @@ versionCheckHook, }: let - version = "0.22.0"; + version = "0.22.1"; in buildPythonPackage { inherit version; @@ -30,11 +30,15 @@ buildPythonPackage { owner = "caksoylar"; repo = "keymap-drawer"; tag = "v${version}"; - hash = "sha256-SPnIfrUA0M9xznjEe60T+0VHh9lCmY4cni9hyqFlZqM="; + hash = "sha256-X3O5yspEdey03YQ6JsYN/DE9NUiq148u1W6LQpUQ3ns="; }; build-system = [ poetry-core ]; + pythonRelaxDeps = [ + "tree-sitter-devicetree" + ]; + dependencies = [ pcpp platformdirs From b0ff330a9a75cc41e21a5ecbb2794a4f13a26137 Mon Sep 17 00:00:00 2001 From: voxi0 Date: Thu, 31 Jul 2025 23:33:37 +0100 Subject: [PATCH 068/116] maintainers: add voxi0 --- maintainers/maintainer-list.nix | 1411 ++++++++++++++++--------------- 1 file changed, 709 insertions(+), 702 deletions(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 230358d5b068..e340b808d9b5 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -1,67 +1,67 @@ /* - List of NixOS maintainers. - ```nix - handle = { - # Required - name = "Your name"; +List of NixOS maintainers. + ```nix + handle = { + # Required + name = "Your name"; - # Optional, but at least one of email, matrix or githubId must be given - email = "address@example.org"; - matrix = "@user:example.org"; - github = "GithubUsername"; - githubId = your-github-id; + # Optional, but at least one of email, matrix or githubId must be given + email = "address@example.org"; + matrix = "@user:example.org"; + github = "GithubUsername"; + githubId = your-github-id; - keys = [{ - fingerprint = "AAAA BBBB CCCC DDDD EEEE FFFF 0000 1111 2222 3333"; - }]; - }; - ``` + keys = [{ + fingerprint = "AAAA BBBB CCCC DDDD EEEE FFFF 0000 1111 2222 3333"; + }]; + }; + ``` - where + where - - `handle` is the handle you are going to use in nixpkgs expressions, - - `name` is a name that people would know and recognize you by, - - `email` is your maintainer email address, - - `matrix` is your Matrix user ID, - - `github` is your GitHub handle (as it appears in the URL of your profile page, `https://github.com/`), - - `githubId` is your GitHub user ID, which can be found at `https://api.github.com/users/`, - - `keys` is a list of your PGP/GPG key fingerprints. + - `handle` is the handle you are going to use in nixpkgs expressions, + - `name` is a name that people would know and recognize you by, + - `email` is your maintainer email address, + - `matrix` is your Matrix user ID, + - `github` is your GitHub handle (as it appears in the URL of your profile page, `https://github.com/`), + - `githubId` is your GitHub user ID, which can be found at `https://api.github.com/users/`, + - `keys` is a list of your PGP/GPG key fingerprints. - Specifying a GitHub account ensures that you automatically: - - get invited to the @NixOS/nixpkgs-maintainers team ; - - once you are part of the @NixOS org, OfBorg will request you review - pull requests that modify a package for which you are a maintainer. + Specifying a GitHub account ensures that you automatically: + - get invited to the @NixOS/nixpkgs-maintainers team ; + - once you are part of the @NixOS org, OfBorg will request you review + pull requests that modify a package for which you are a maintainer. - `handle == github` is strongly preferred whenever `github` is an acceptable attribute name and is short and convenient. + `handle == github` is strongly preferred whenever `github` is an acceptable attribute name and is short and convenient. - If `github` begins with a numeral, `handle` should be prefixed with an underscore. - ```nix - _1example = { - github = "1example"; - }; - ``` + If `github` begins with a numeral, `handle` should be prefixed with an underscore. + ```nix + _1example = { + github = "1example"; + }; + ``` - Add PGP/GPG keys only if you actually use them to sign commits and/or mail. + Add PGP/GPG keys only if you actually use them to sign commits and/or mail. - To get the required PGP/GPG values for a key run - ```shell - gpg --fingerprint | head -n 2 - ``` + To get the required PGP/GPG values for a key run + ```shell + gpg --fingerprint | head -n 2 + ``` - !!! Note that PGP/GPG values stored here are for informational purposes only, don't use this file as a source of truth. + !!! Note that PGP/GPG values stored here are for informational purposes only, don't use this file as a source of truth. - More fields may be added in the future, however, in order to comply with GDPR this file should stay as minimal as possible. + More fields may be added in the future, however, in order to comply with GDPR this file should stay as minimal as possible. - When editing this file: - * keep the list alphabetically sorted - * test the validity of the format with: - nix-build lib/tests/maintainers.nix + When editing this file: + * keep the list alphabetically sorted + * test the validity of the format with: + nix-build lib/tests/maintainers.nix - See `./scripts/check-maintainer-github-handles.sh` for an example on how to work with this data. + See `./scripts/check-maintainer-github-handles.sh` for an example on how to work with this data. - When adding a new maintainer, be aware of the current commit conventions - documented at [CONTRIBUTING.md](https://github.com/NixOS/nixpkgs/blob/master/CONTRIBUTING.md#commit-conventions) - file located in the root of the Nixpkgs repo. + When adding a new maintainer, be aware of the current commit conventions + documented at [CONTRIBUTING.md](https://github.com/NixOS/nixpkgs/blob/master/CONTRIBUTING.md#commit-conventions) + file located in the root of the Nixpkgs repo. */ { # keep-sorted start case=no numeric=no block=yes @@ -107,7 +107,7 @@ name = "Joachim Ernst"; github = "0x4A6F"; githubId = 9675338; - keys = [ { fingerprint = "F466 A548 AD3F C1F1 8C88 4576 8702 7528 B006 D66D"; } ]; + keys = [{fingerprint = "F466 A548 AD3F C1F1 8C88 4576 8702 7528 B006 D66D";}]; }; _0x5a4 = { email = "bej86nug@hhu.de"; @@ -126,7 +126,7 @@ name = "Bela Stoyan"; github = "0xbe7a"; githubId = 6232980; - keys = [ { fingerprint = "2536 9E86 1AA5 9EB7 4C47 B138 6510 870A 77F4 9A99"; } ]; + keys = [{fingerprint = "2536 9E86 1AA5 9EB7 4C47 B138 6510 870A 77F4 9A99";}]; }; _0xC45 = { email = "jason@0xc45.com"; @@ -247,7 +247,7 @@ github = "4r7if3x"; githubId = 8606282; name = "4r7if3x"; - keys = [ { fingerprint = "013C ED4B E769 745A CFC3 0F3C F23C 2613 2266 7A12"; } ]; + keys = [{fingerprint = "013C ED4B E769 745A CFC3 0F3C F23C 2613 2266 7A12";}]; }; _6543 = { email = "6543@obermui.de"; @@ -255,7 +255,7 @@ github = "6543"; githubId = 24977596; name = "6543"; - keys = [ { fingerprint = "8722 B61D 7234 1082 553B 201C B8BE 6D61 0E61 C862"; } ]; + keys = [{fingerprint = "8722 B61D 7234 1082 553B 201C B8BE 6D61 0E61 C862";}]; }; _6AA4FD = { email = "f6442954@gmail.com"; @@ -298,7 +298,7 @@ github = "999eagle"; githubId = 1221984; name = "Sophie Tauchert"; - keys = [ { fingerprint = "7B59 F09E 0FE5 BC34 F032 1FB4 5270 1DE5 F5F5 1125"; } ]; + keys = [{fingerprint = "7B59 F09E 0FE5 BC34 F032 1FB4 5270 1DE5 F5F5 1125";}]; }; _9glenda = { email = "plan9git@proton.me"; @@ -306,7 +306,7 @@ github = "9glenda"; githubId = 69043370; name = "9glenda"; - keys = [ { fingerprint = "DBF4 E6D0 90B8 BEA4 4BFE 1F1C 3442 4321 39B5 0691"; } ]; + keys = [{fingerprint = "DBF4 E6D0 90B8 BEA4 4BFE 1F1C 3442 4321 39B5 0691";}]; }; _9R = { email = "nix@9-r.net"; @@ -430,7 +430,7 @@ github = "wahjava"; githubId = 2255192; name = "Ashish SHUKLA"; - keys = [ { fingerprint = "F682 CDCC 39DC 0FEA E116 20B6 C746 CFA9 E74F A4B0"; } ]; + keys = [{fingerprint = "F682 CDCC 39DC 0FEA E116 20B6 C746 CFA9 E74F A4B0";}]; }; abbradar = { email = "ab@fmap.me"; @@ -558,14 +558,14 @@ email = "zestypurple@protonmail.com"; github = "acuteaangle"; githubId = 79724236; - keys = [ { fingerprint = "46C0 9BA8 A20E 5C50 1E1E 0597 0B6D 17F7 2BC4 7F61"; } ]; + keys = [{fingerprint = "46C0 9BA8 A20E 5C50 1E1E 0597 0B6D 17F7 2BC4 7F61";}]; }; acuteenvy = { matrix = "@acuteenvy:matrix.org"; github = "acuteenvy"; githubId = 126529524; name = "Lena"; - keys = [ { fingerprint = "CE85 54F7 B9BC AC0D D648 5661 AB5F C04C 3C94 443F"; } ]; + keys = [{fingerprint = "CE85 54F7 B9BC AC0D D648 5661 AB5F C04C 3C94 443F";}]; }; adam248 = { email = "adamjbutler091@gmail.com"; @@ -592,8 +592,8 @@ github = "adamperkowski"; githubId = 75480869; keys = [ - { fingerprint = "00F6 1623 FB56 BC5B B709 4E63 4CE6 C117 2DF6 BE79"; } - { fingerprint = "5A53 0832 DA91 20B0 CA57 DDB6 7CBD B58E CF1D 3478"; } + {fingerprint = "00F6 1623 FB56 BC5B B709 4E63 4CE6 C117 2DF6 BE79";} + {fingerprint = "5A53 0832 DA91 20B0 CA57 DDB6 7CBD B58E CF1D 3478";} ]; }; adamt = { @@ -702,14 +702,14 @@ github = "adtya"; githubId = 22346805; name = "Adithya Nair"; - keys = [ { fingerprint = "51E4 F5AB 1B82 BE45 B422 9CC2 43A5 E25A A5A2 7849"; } ]; + keys = [{fingerprint = "51E4 F5AB 1B82 BE45 B422 9CC2 43A5 E25A A5A2 7849";}]; }; aduh95 = { email = "duhamelantoine1995@gmail.com"; github = "aduh95"; githubId = 14309773; name = "Antoine du Hamel"; - keys = [ { fingerprint = "5BE8 A3F6 C8A5 C01D 106C 0AD8 20B1 A390 B168 D356"; } ]; + keys = [{fingerprint = "5BE8 A3F6 C8A5 C01D 106C 0AD8 20B1 A390 B168 D356";}]; }; aerialx = { email = "aaron+nixos@aaronlindsay.com"; @@ -844,7 +844,7 @@ matrix = "@aikoo7:matrix.org"; github = "aikooo7"; githubId = 79667753; - keys = [ { fingerprint = "B0D7 2955 235F 6AB5 ACFA 1619 8C7F F5BB 1ADE F191"; } ]; + keys = [{fingerprint = "B0D7 2955 235F 6AB5 ACFA 1619 8C7F F5BB 1ADE F191";}]; }; ailsa-sun = { name = "Ailsa Sun"; @@ -971,7 +971,7 @@ email = "alessandro.barenghi@tuta.io"; github = "akkesm"; githubId = 56970006; - keys = [ { fingerprint = "50E2 669C AB38 2F4A 5F72 1667 0D6B FC01 D45E DADD"; } ]; + keys = [{fingerprint = "50E2 669C AB38 2F4A 5F72 1667 0D6B FC01 D45E DADD";}]; }; akotro = { name = "Antonis Kotronakis"; @@ -1019,7 +1019,7 @@ github = "al3xtjames"; githubId = 5672538; name = "Alex James"; - keys = [ { fingerprint = "F354 FFAB EA89 A49D 33ED 2590 4729 B829 AC5F CC72"; } ]; + keys = [{fingerprint = "F354 FFAB EA89 A49D 33ED 2590 4729 B829 AC5F CC72";}]; }; ALameLlama = { email = "NicholasACiechanowski@gmail.com"; @@ -1192,7 +1192,7 @@ email = "ashpilkin@gmail.com"; github = "alexshpilkin"; githubId = 1010468; - keys = [ { fingerprint = "B595 D74D 6615 C010 469F 5A13 73E9 AA11 4B3A 894B"; } ]; + keys = [{fingerprint = "B595 D74D 6615 C010 469F 5A13 73E9 AA11 4B3A 894B";}]; matrix = "@alexshpilkin:matrix.org"; name = "Alexander Shpilkin"; }; @@ -1298,7 +1298,7 @@ matrix = "@aloisw:kde.org"; github = "alois31"; githubId = 36605164; - keys = [ { fingerprint = "CA97 A822 FF24 25D4 74AF 3E4B E0F5 9EA5 E521 6914"; } ]; + keys = [{fingerprint = "CA97 A822 FF24 25D4 74AF 3E4B E0F5 9EA5 E521 6914";}]; }; Alper-Celik = { email = "alper@alper-celik.dev"; @@ -1306,8 +1306,8 @@ github = "Alper-Celik"; githubId = 110625473; keys = [ - { fingerprint = "6B69 19DD CEE0 FAF3 5C9F 2984 FA90 C0AB 738A B873"; } - { fingerprint = "DF68 C500 4024 23CC F9C5 E6CA 3D17 C832 4696 FE70"; } + {fingerprint = "6B69 19DD CEE0 FAF3 5C9F 2984 FA90 C0AB 738A B873";} + {fingerprint = "DF68 C500 4024 23CC F9C5 E6CA 3D17 C832 4696 FE70";} ]; }; alternateved = { @@ -1425,7 +1425,7 @@ email = "matilde@diffyq.xyz"; github = "matilde-ametrine"; githubId = 90799677; - keys = [ { fingerprint = "7931 EB4E 4712 D7BE 04F8 6D34 07EE 1FFC A58A 11C5"; } ]; + keys = [{fingerprint = "7931 EB4E 4712 D7BE 04F8 6D34 07EE 1FFC A58A 11C5";}]; }; amfl = { email = "amfl@none.none"; @@ -1467,7 +1467,7 @@ github = "amyipdev"; githubId = 46307646; name = "Amy Parker"; - keys = [ { fingerprint = "7786 034B D521 49F5 1B0A 2A14 B112 2F04 E962 DDC5"; } ]; + keys = [{fingerprint = "7786 034B D521 49F5 1B0A 2A14 B112 2F04 E962 DDC5";}]; }; amz-x = { email = "mail@amz-x.com"; @@ -1486,7 +1486,7 @@ github = "0x61nas"; githubId = 44965145; name = "Anas Elgarhy"; - keys = [ { fingerprint = "E10B D192 9231 08C7 3C35 7EC3 83E0 3DC6 F383 4086"; } ]; + keys = [{fingerprint = "E10B D192 9231 08C7 3C35 7EC3 83E0 3DC6 F383 4086";}]; }; AnatolyPopov = { email = "aipopov@live.ru"; @@ -1670,14 +1670,14 @@ matrix = "@angryant:envs.net"; github = "AngryAnt"; githubId = 102513; - keys = [ { fingerprint = "B7B7 582E 564E 789B FCB8 71AB 0C6D FE2F B234 534A"; } ]; + keys = [{fingerprint = "B7B7 582E 564E 789B FCB8 71AB 0C6D FE2F B234 534A";}]; }; anhdle14 = { name = "Le Anh Duc"; email = "anhdle14@icloud.com"; github = "anhdle14"; githubId = 9645992; - keys = [ { fingerprint = "AA4B 8EC3 F971 D350 482E 4E20 0299 AFF9 ECBB 5169"; } ]; + keys = [{fingerprint = "AA4B 8EC3 F971 D350 482E 4E20 0299 AFF9 ECBB 5169";}]; }; anhduy = { email = "vo@anhduy.io"; @@ -1690,7 +1690,7 @@ email = "i@anillc.cn"; github = "Anillc"; githubId = 23411248; - keys = [ { fingerprint = "6141 1E4F FE10 CE7B 2E14 CD76 0BE8 A88F 47B2 145C"; } ]; + keys = [{fingerprint = "6141 1E4F FE10 CE7B 2E14 CD76 0BE8 A88F 47B2 145C";}]; }; anirrudh = { email = "anik597@gmail.com"; @@ -1748,9 +1748,9 @@ matrix = "@anpin:matrix.org"; name = "Pavel Anpin"; keys = [ - { fingerprint = "06E8 4FF6 0CCF 7AFD 5101 76C9 0FBC D3EE 6310 7407"; } + {fingerprint = "06E8 4FF6 0CCF 7AFD 5101 76C9 0FBC D3EE 6310 7407";} # compare with https://keybase.io/anpin/pgp_keys.asc - { fingerprint = "DADF F3EA 06DC 8C1B 100A 24DB 312E 8F17 91C5 DA8C"; } + {fingerprint = "DADF F3EA 06DC 8C1B 100A 24DB 312E 8F17 91C5 DA8C";} ]; }; anpryl = { @@ -1765,7 +1765,7 @@ githubId = 48802534; name = "Anselm Schüler"; matrix = "@schuelermine:matrix.org"; - keys = [ { fingerprint = "CDBF ECA8 36FE E340 1CEB 58FF BA34 EE1A BA3A 0955"; } ]; + keys = [{fingerprint = "CDBF ECA8 36FE E340 1CEB 58FF BA34 EE1A BA3A 0955";}]; }; # currently on hiatus, please do not ping until this notice is removed (or if it’s been like two years) anthonyroussel = { email = "anthony@roussel.dev"; @@ -1773,7 +1773,7 @@ githubId = 220084; name = "Anthony Roussel"; matrix = "@anthonyrsl:matrix.org"; - keys = [ { fingerprint = "472D 368A F107 F443 F3A5 C712 9DC4 987B 1A55 E75E"; } ]; + keys = [{fingerprint = "472D 368A F107 F443 F3A5 C712 9DC4 987B 1A55 E75E";}]; }; antipatico = { email = "code@bootkit.dev"; @@ -1809,7 +1809,7 @@ github = "antonmosich"; githubId = 27223336; name = "Anton Mosich"; - keys = [ { fingerprint = "F401 287C 324F 0A1C B321 657B 9B96 97B8 FB18 7D14"; } ]; + keys = [{fingerprint = "F401 287C 324F 0A1C B321 657B 9B96 97B8 FB18 7D14";}]; }; antono = { email = "self@antono.info"; @@ -1877,7 +1877,7 @@ github = "aplund"; githubId = 1369436; name = "Austin Lund"; - keys = [ { fingerprint = "7083 E268 4BFD 845F 2B84 9E74 B695 8918 ED23 32CE"; } ]; + keys = [{fingerprint = "7083 E268 4BFD 845F 2B84 9E74 B695 8918 ED23 32CE";}]; }; appleboblin = { email = "github@appleboblin.com"; @@ -1891,8 +1891,8 @@ githubId = 2477952; name = "Kalle Fagerberg"; keys = [ - { fingerprint = "F68E 6DB3 79FB 1FF0 7C72 6479 9874 DEDD 3592 5ED0"; } - { fingerprint = "8DDB 3994 0A34 4FE5 4F3B 3E77 F161 001D EE78 1051"; } + {fingerprint = "F68E 6DB3 79FB 1FF0 7C72 6479 9874 DEDD 3592 5ED0";} + {fingerprint = "8DDB 3994 0A34 4FE5 4F3B 3E77 F161 001D EE78 1051";} ]; }; applePrincess = { @@ -1900,7 +1900,7 @@ github = "applePrincess"; githubId = 17154507; name = "Lein Matsumaru"; - keys = [ { fingerprint = "BF8B F725 DA30 E53E 7F11 4ED8 AAA5 0652 F047 9205"; } ]; + keys = [{fingerprint = "BF8B F725 DA30 E53E 7F11 4ED8 AAA5 0652 F047 9205";}]; }; appsforartists = { github = "appsforartists"; @@ -2130,7 +2130,7 @@ github = "artemist"; githubId = 1226638; name = "Artemis Tosini"; - keys = [ { fingerprint = "3D2B B230 F9FA F0C5 1832 46DD 4FDC 96F1 61E7 BA8A"; } ]; + keys = [{fingerprint = "3D2B B230 F9FA F0C5 1832 46DD 4FDC 96F1 61E7 BA8A";}]; }; arthsmn = { name = "Arthur Cerqueira"; @@ -2227,14 +2227,14 @@ email = "software@conlon.dev"; github = "a1994sc"; githubId = 1966320; - keys = [ { fingerprint = "E1F3 9B80 47A5 1EB9 01F8 C385 7FE3 F668 49737 F37"; } ]; + keys = [{fingerprint = "E1F3 9B80 47A5 1EB9 01F8 C385 7FE3 F668 49737 F37";}]; }; asciimoth = { name = "Andrew"; email = "ascii@moth.contact"; github = "asciimoth"; githubId = 91414737; - keys = [ { fingerprint = "C5C8 4658 CCFD 7E8E 71DE E933 AF3A E54F C3A3 5C9F"; } ]; + keys = [{fingerprint = "C5C8 4658 CCFD 7E8E 71DE E933 AF3A E54F C3A3 5C9F";}]; }; ashalkhakov = { email = "artyom.shalkhakov@gmail.com"; @@ -2278,7 +2278,7 @@ github = "ashuramaruzxc"; githubId = 72100551; name = "Mariia Holovata"; - keys = [ { fingerprint = "409D 201E 9450 8732 A49E D0FC 6BDA F874 0068 08DF"; } ]; + keys = [{fingerprint = "409D 201E 9450 8732 A49E D0FC 6BDA F874 0068 08DF";}]; }; asininemonkey = { email = "nixpkgs@asininemonkey.com"; @@ -2309,7 +2309,7 @@ github = "AsPulse"; githubId = 84216737; name = "AsPulse / あすぱる"; - keys = [ { fingerprint = "C919 E69E A7C0 E147 9E0F C26E 1EDA D0C6 70BD 062D"; } ]; + keys = [{fingerprint = "C919 E69E A7C0 E147 9E0F C26E 1EDA D0C6 70BD 062D";}]; }; assistant = { email = "assistant.moetron@gmail.com"; @@ -2342,7 +2342,7 @@ github = "astrobeastie"; githubId = 26362368; name = "Vincent Fischer"; - keys = [ { fingerprint = "BF47 81E1 F304 1ADF 18CE C401 DE16 C7D1 536D A72F"; } ]; + keys = [{fingerprint = "BF47 81E1 F304 1ADF 18CE C401 DE16 C7D1 536D A72F";}]; }; astronaut0212 = { email = "goatastronaut0212@outlook.com"; @@ -2362,7 +2362,7 @@ github = "aszlig"; githubId = 192147; name = "aszlig"; - keys = [ { fingerprint = "DD52 6BC7 767D BA28 16C0 95E5 6840 89CE 67EB B691"; } ]; + keys = [{fingerprint = "DD52 6BC7 767D BA28 16C0 95E5 6840 89CE 67EB B691";}]; }; atagen = { name = "atagen"; @@ -2387,7 +2387,7 @@ github = "AtaraxiaSjel"; githubId = 5314145; name = "Dmitriy"; - keys = [ { fingerprint = "922D A6E7 58A0 FE4C FAB4 E4B2 FD26 6B81 0DF4 8DF2"; } ]; + keys = [{fingerprint = "922D A6E7 58A0 FE4C FAB4 E4B2 FD26 6B81 0DF4 8DF2";}]; }; atemu = { name = "Atemu"; @@ -2429,7 +2429,7 @@ email = "m.abdolirad@gmail.com"; github = "atkrad"; githubId = 351364; - keys = [ { fingerprint = "0380 F2F8 DF7A BA1A E7DB D84A 1935 1496 62CA FDB8"; } ]; + keys = [{fingerprint = "0380 F2F8 DF7A BA1A E7DB D84A 1935 1496 62CA FDB8";}]; }; atnnn = { email = "etienne@atnnn.com"; @@ -2448,7 +2448,7 @@ email = "attila@dorn.haus"; github = "attilaolah"; githubId = 196617; - keys = [ { fingerprint = "BF2E 4759 74D3 88E0 E30C 9604 07E6 C064 3FD1 42C3"; } ]; + keys = [{fingerprint = "BF2E 4759 74D3 88E0 E30C 9604 07E6 C064 3FD1 42C3";}]; }; auchter = { name = "Michael Auchter"; @@ -2509,7 +2509,7 @@ email = "sven@autumnal.de"; github = "sevenautumns"; githubId = 20627275; - keys = [ { fingerprint = "6A2E 7FDD 1037 11A8 B996 E28E B051 064E 2FCA B71B"; } ]; + keys = [{fingerprint = "6A2E 7FDD 1037 11A8 B996 E28E B051 064E 2FCA B71B";}]; }; av-gal = { email = "alex.v.galvin@gmail.com"; @@ -2564,14 +2564,14 @@ email = "alex@averyan.ru"; github = "averyanalex"; githubId = 59499799; - keys = [ { fingerprint = "A0FF 4F26 6B80 0B86 726D EA5B 3C23 C7BD 9945 2036"; } ]; + keys = [{fingerprint = "A0FF 4F26 6B80 0B86 726D EA5B 3C23 C7BD 9945 2036";}]; }; averyvigolo = { email = "nixpkgs@averyv.me"; github = "averyvigolo"; githubId = 26379999; name = "Avery Vigolo"; - keys = [ { fingerprint = "9848 B216 BCBE 29BB 1C6A E0D5 7A4D F5A8 CDBD 49C7"; } ]; + keys = [{fingerprint = "9848 B216 BCBE 29BB 1C6A E0D5 7A4D F5A8 CDBD 49C7";}]; }; avh4 = { email = "gruen0aermel@gmail.com"; @@ -2584,14 +2584,14 @@ github = "aviallon"; githubId = 7479436; name = "Antoine Viallon"; - keys = [ { fingerprint = "4AC4 A28D 7208 FC6F 2B51 5EA9 D126 B13A B555 E16F"; } ]; + keys = [{fingerprint = "4AC4 A28D 7208 FC6F 2B51 5EA9 D126 B13A B555 E16F";}]; }; avitex = { email = "theavitex@gmail.com"; github = "avitex"; githubId = 5110816; name = "avitex"; - keys = [ { fingerprint = "271E 136C 178E 06FA EA4E B854 8B36 6C44 3CAB E942"; } ]; + keys = [{fingerprint = "271E 136C 178E 06FA EA4E B854 8B36 6C44 3CAB E942";}]; }; avnik = { email = "avn@avnik.info"; @@ -2658,7 +2658,7 @@ matrix = "@azahi:azahi.cc"; github = "azahi"; githubId = 22211000; - keys = [ { fingerprint = "2688 0377 C31D 9E81 9BDF 83A8 C8C6 BDDB 3847 F72B"; } ]; + keys = [{fingerprint = "2688 0377 C31D 9E81 9BDF 83A8 C8C6 BDDB 3847 F72B";}]; }; azazak123 = { email = "azazaka2002@gmail.com"; @@ -2701,14 +2701,14 @@ github = "B4dM4n"; githubId = 448169; name = "Fabian Möller"; - keys = [ { fingerprint = "6309 E212 29D4 DA30 AF24 BDED 754B 5C09 63C4 2C50"; } ]; + keys = [{fingerprint = "6309 E212 29D4 DA30 AF24 BDED 754B 5C09 63C4 2C50";}]; }; babbaj = { name = "babbaj"; email = "babbaj45@gmail.com"; github = "babbaj"; githubId = 12820770; - keys = [ { fingerprint = "6FBC A462 4EAF C69C A7C4 98C1 F044 3098 48A0 7CAC"; } ]; + keys = [{fingerprint = "6FBC A462 4EAF C69C A7C4 98C1 F044 3098 48A0 7CAC";}]; }; babeuh = { name = "Raphael Le Goaller"; @@ -2735,7 +2735,7 @@ matrix = "@badele:matrix.org"; github = "badele"; githubId = 2806307; - keys = [ { fingerprint = "00F4 21C4 C537 7BA3 9820 E13F 6B95 E13D E469 CC5D"; } ]; + keys = [{fingerprint = "00F4 21C4 C537 7BA3 9820 E13F 6B95 E13D E469 CC5D";}]; }; badmutex = { email = "github@badi.sh"; @@ -2862,7 +2862,7 @@ github = "wandersoncferreira"; githubId = 17708295; name = "Wanderson Ferreira"; - keys = [ { fingerprint = "A3E1 C409 B705 50B3 BF41 492B 5684 0A61 4DBE 37AE"; } ]; + keys = [{fingerprint = "A3E1 C409 B705 50B3 BF41 492B 5684 0A61 4DBE 37AE";}]; }; bashsu = { name = "Joeal Subash"; @@ -2876,14 +2876,14 @@ matrix = "@bastaynav:matrix.org"; github = "bastaynav"; githubId = 6987136; - keys = [ { fingerprint = "2C6D 37D4 6AA1 DCDA BE8D F346 43E2 CF4C 01B9 4940"; } ]; + keys = [{fingerprint = "2C6D 37D4 6AA1 DCDA BE8D F346 43E2 CF4C 01B9 4940";}]; }; BastianAsmussen = { name = "Bastian Asmussen"; email = "bastian@asmussen.tech"; github = "BastianAsmussen"; githubId = 76102128; - keys = [ { fingerprint = "3B11 7469 0893 85E7 16C2 7CD9 0FE5 A355 DBC9 2568"; } ]; + keys = [{fingerprint = "3B11 7469 0893 85E7 16C2 7CD9 0FE5 A355 DBC9 2568";}]; }; basvandijk = { email = "v.dijk.bas@gmail.com"; @@ -2915,7 +2915,7 @@ matrix = "@baukexyz:matrix.org"; github = "Bauke"; githubId = 19501722; - keys = [ { fingerprint = "C593 27B5 9D0F 2622 23F6 1D03 C1C0 F299 52BC F558"; } ]; + keys = [{fingerprint = "C593 27B5 9D0F 2622 23F6 1D03 C1C0 F299 52BC F558";}]; }; bb2020 = { github = "bb2020"; @@ -3044,21 +3044,21 @@ email = "blcknc@pm.me"; github = "bellackn"; githubId = 32039602; - keys = [ { fingerprint = "2B46 58FF 887A 8366 F88B BE92 CF83 0BB3 B973 9A6A"; } ]; + keys = [{fingerprint = "2B46 58FF 887A 8366 F88B BE92 CF83 0BB3 B973 9A6A";}]; }; ben9986 = { name = "Ben Carmichael"; email = "ben9986.unvmn@passinbox.com"; github = "Ben9986"; githubId = 38633150; - keys = [ { fingerprint = "03C7 A587 74B3 F0E8 CE1F 4F8E ABBC DD77 69BC D3B0"; } ]; + keys = [{fingerprint = "03C7 A587 74B3 F0E8 CE1F 4F8E ABBC DD77 69BC D3B0";}]; }; benaryorg = { name = "benaryorg"; email = "binary@benary.org"; github = "benaryorg"; githubId = 6145260; - keys = [ { fingerprint = "804B 6CB8 AED5 61D9 3DAD 4DC5 E2F2 2C5E DF20 119D"; } ]; + keys = [{fingerprint = "804B 6CB8 AED5 61D9 3DAD 4DC5 E2F2 2C5E DF20 119D";}]; }; benchand = { name = "Ben Chand"; @@ -3078,14 +3078,14 @@ email = "b.broich@posteo.de"; github = "BenediktBroich"; githubId = 32903896; - keys = [ { fingerprint = "CB5C 7B3C 3E6F 2A59 A583 A90A 8A60 0376 7BE9 5976"; } ]; + keys = [{fingerprint = "CB5C 7B3C 3E6F 2A59 A583 A90A 8A60 0376 7BE9 5976";}]; }; benesim = { name = "Benjamin Isbarn"; email = "benjamin.isbarn@gmail.com"; github = "BeneSim"; githubId = 29384538; - keys = [ { fingerprint = "D35E C9CE E631 638F F1D8 B401 6F0E 410D C3EE D02"; } ]; + keys = [{fingerprint = "D35E C9CE E631 638F F1D8 B401 6F0E 410D C3EE D02";}]; }; bengsparks = { email = "benjamin.sparks@protonmail.com"; @@ -3110,7 +3110,7 @@ email = "benjaminedwardwebb@gmail.com"; github = "benjaminedwardwebb"; githubId = 7118777; - keys = [ { fingerprint = "E9A3 7864 2165 28CE 507C CA82 72EA BF75 C331 CD25"; } ]; + keys = [{fingerprint = "E9A3 7864 2165 28CE 507C CA82 72EA BF75 C331 CD25";}]; }; benkuhn = { email = "ben@ben-kuhn.com"; @@ -3123,7 +3123,7 @@ github = "benlemasurier"; githubId = 47993; name = "Ben LeMasurier"; - keys = [ { fingerprint = "0FD4 7407 EFD4 8FD8 8BF5 87B3 248D 430A E8E7 4189"; } ]; + keys = [{fingerprint = "0FD4 7407 EFD4 8FD8 8BF5 87B3 248D 430A E8E7 4189";}]; }; benley = { email = "benley@gmail.com"; @@ -3173,7 +3173,7 @@ email = "nicolas@normie.dev"; github = "berbiche"; githubId = 20448408; - keys = [ { fingerprint = "D446 E58D 87A0 31C7 EC15 88D7 B461 2924 45C6 E696"; } ]; + keys = [{fingerprint = "D446 E58D 87A0 31C7 EC15 88D7 B461 2924 45C6 E696";}]; }; berce = { email = "bert.moens@gmail.com"; @@ -3204,7 +3204,7 @@ email = "eric.berquist@gmail.com"; github = "berquist"; githubId = 727571; - keys = [ { fingerprint = "AAD4 3B70 A504 9675 CFC8 B101 BAFD 205D 5FA2 B329"; } ]; + keys = [{fingerprint = "AAD4 3B70 A504 9675 CFC8 B101 BAFD 205D 5FA2 B329";}]; }; berrij = { email = "jonathan@berrisch.biz"; @@ -3212,7 +3212,7 @@ name = "Jonathan Berrisch"; github = "BerriJ"; githubId = 37799358; - keys = [ { fingerprint = "42 B6 CC90 6 A91 EA4F 8 A7E 315 B 30 DC 5398 152 C 5310"; } ]; + keys = [{fingerprint = "42 B6 CC90 6 A91 EA4F 8 A7E 315 B 30 DC 5398 152 C 5310";}]; }; berryp = { email = "berryphillips@gmail.com"; @@ -3225,7 +3225,7 @@ email = "berto.f@protonmail.com"; github = "bertof"; githubId = 9915675; - keys = [ { fingerprint = "17C5 1EF9 C0FE 2EB2 FE56 BB53 FE98 AE5E C52B 1056"; } ]; + keys = [{fingerprint = "17C5 1EF9 C0FE 2EB2 FE56 BB53 FE98 AE5E C52B 1056";}]; }; betaboon = { email = "betaboon@0x80.ninja"; @@ -3238,7 +3238,7 @@ email = "nixpkgs@beviu.com"; github = "beviu"; githubId = 56923875; - keys = [ { fingerprint = "30D6 A755 E3C3 5797 CBBB 05B6 CD20 2E66 5CAD 7D06"; } ]; + keys = [{fingerprint = "30D6 A755 E3C3 5797 CBBB 05B6 CD20 2E66 5CAD 7D06";}]; }; bew = { email = "benoit.dechezelles@gmail.com"; @@ -3322,7 +3322,7 @@ github = "Binary-Eater"; githubId = 10691440; name = "Rahul Rameshbabu"; - keys = [ { fingerprint = "678A 8DF1 D9F2 B51B 7110 BE53 FF24 7B3E 5411 387B"; } ]; + keys = [{fingerprint = "678A 8DF1 D9F2 B51B 7110 BE53 FF24 7B3E 5411 387B";}]; }; binarycat = { email = "binarycat@envs.net"; @@ -3394,7 +3394,7 @@ email = "blankparticle@gmail.com"; github = "BlankParticle"; githubId = 130567419; - keys = [ { fingerprint = "1757 64C3 7065 AA8D 614D 41C9 0ACE 126D 7B35 9261"; } ]; + keys = [{fingerprint = "1757 64C3 7065 AA8D 614D 41C9 0ACE 126D 7B35 9261";}]; }; blanky0230 = { email = "blanky0230@gmail.com"; @@ -3408,7 +3408,7 @@ name = "Brian Lee"; github = "bleetube"; githubId = 77934086; - keys = [ { fingerprint = "4CA3 48F6 8FE1 1777 8EDA 3860 B9A2 C1B0 25EC 2C55"; } ]; + keys = [{fingerprint = "4CA3 48F6 8FE1 1777 8EDA 3860 B9A2 C1B0 25EC 2C55";}]; }; blenderfreaky = { name = "blenderfreaky"; @@ -3560,7 +3560,7 @@ matrix = "@bonus:bonusplay.pl"; github = "BonusPlay"; githubId = 8405359; - keys = [ { fingerprint = "8279 6487 A4CA 2A28 E8B3 3CD6 C7F9 9743 6A20 4683"; } ]; + keys = [{fingerprint = "8279 6487 A4CA 2A28 E8B3 3CD6 C7F9 9743 6A20 4683";}]; }; booklearner = { name = "booklearner"; @@ -3568,7 +3568,7 @@ matrix = "@booklearner:matrix.org"; github = "booklearner"; githubId = 103979114; - keys = [ { fingerprint = "17C7 95D4 871C 2F87 83C8 053D 0C61 C4E5 907F 76C8"; } ]; + keys = [{fingerprint = "17C7 95D4 871C 2F87 83C8 053D 0C61 C4E5 907F 76C8";}]; }; booniepepper = { name = "J.R. Hill"; @@ -3637,14 +3637,14 @@ matrix = "@soispha:vhack.eu"; github = "bpeetz"; githubId = 140968250; - keys = [ { fingerprint = "8321 ED3A 8DB9 99A5 1F3B F80F F268 2914 EA42 DE26"; } ]; + keys = [{fingerprint = "8321 ED3A 8DB9 99A5 1F3B F80F F268 2914 EA42 DE26";}]; }; Br1ght0ne = { email = "brightone@protonmail.com"; github = "Br1ght0ne"; githubId = 12615679; name = "Oleksii Filonenko"; - keys = [ { fingerprint = "F549 3B7F 9372 5578 FDD3 D0B8 A1BC 8428 323E CFE8"; } ]; + keys = [{fingerprint = "F549 3B7F 9372 5578 FDD3 D0B8 A1BC 8428 323E CFE8";}]; }; br337 = { email = "brian.porumb@proton.me"; @@ -3705,7 +3705,7 @@ github = "bretek"; githubId = 79257746; name = "Joseph Madden"; - keys = [ { fingerprint = "3CF8 E983 2219 AB4B 0E19 158E 6112 1921 C9F8 117C"; } ]; + keys = [{fingerprint = "3CF8 E983 2219 AB4B 0E19 158E 6112 1921 C9F8 117C";}]; }; brettlyons = { email = "blyons@fastmail.com"; @@ -3730,7 +3730,7 @@ email = "brian@linuxpenguins.xyz"; github = "brianmay"; githubId = 112729; - keys = [ { fingerprint = "D636 5126 A92D B560 C627 ACED 1784 577F 811F 6EAC"; } ]; + keys = [{fingerprint = "D636 5126 A92D B560 C627 ACED 1784 577F 811F 6EAC";}]; }; brianmcgee = { name = "Brian McGee"; @@ -3749,14 +3749,14 @@ email = "hello@bricked.dev"; github = "brckd"; githubId = 92804487; - keys = [ { fingerprint = "58A2 81E6 2FBD 6E4E 664C B603 7B4D 2A02 BB0E C28C"; } ]; + keys = [{fingerprint = "58A2 81E6 2FBD 6E4E 664C B603 7B4D 2A02 BB0E C28C";}]; }; bricklou = { name = "Bricklou"; email = "louis13.bailleau@gmail.com"; github = "bricklou"; githubId = 15181236; - keys = [ { fingerprint = "AE1E 3B80 7727 C974 B972 AB3C C324 01C3 BF52 1179"; } ]; + keys = [{fingerprint = "AE1E 3B80 7727 C974 B972 AB3C C324 01C3 BF52 1179";}]; }; britter = { name = "Benedikt Ritter"; @@ -3769,7 +3769,7 @@ github = "brhoades"; githubId = 4763746; name = "Billy Rhoades"; - keys = [ { fingerprint = "BF4FCB85C69989B4ED95BF938AE74787A4B7C07E"; } ]; + keys = [{fingerprint = "BF4FCB85C69989B4ED95BF938AE74787A4B7C07E";}]; }; broke = { email = "broke@in-fucking.space"; @@ -3794,7 +3794,7 @@ email = "bsc@brsvh.org"; github = "brsvh"; githubId = 63050399; - keys = [ { fingerprint = "7B74 0DB9 F2AC 6D3B 226B C530 78D7 4502 D92E 0218"; } ]; + keys = [{fingerprint = "7B74 0DB9 F2AC 6D3B 226B C530 78D7 4502 D92E 0218";}]; matrix = "@brsvh:mozilla.org"; name = "Burgess Chang"; }; @@ -3864,7 +3864,7 @@ github = "Builditluc"; githubId = 37375448; name = "Builditluc"; - keys = [ { fingerprint = "FF16E475723B8C1E57A6B2569374074AE2D6F20E"; } ]; + keys = [{fingerprint = "FF16E475723B8C1E57A6B2569374074AE2D6F20E";}]; }; buurro = { email = "marcoburro98@gmail.com"; @@ -3956,8 +3956,8 @@ github = "c4patino"; githubId = 79673111; keys = [ - { fingerprint = "EA60 D516 A926 7532 369D 3E67 E161 DF22 9EC1 280E"; } - { fingerprint = "D088 A5AF C45B 78D1 CD4F 457C 6957 B3B6 46F2 BB4E"; } + {fingerprint = "EA60 D516 A926 7532 369D 3E67 E161 DF22 9EC1 280E";} + {fingerprint = "D088 A5AF C45B 78D1 CD4F 457C 6957 B3B6 46F2 BB4E";} ]; }; caarlos0 = { @@ -3973,8 +3973,8 @@ name = "Vladimir Serov"; keys = [ # compare with https://keybase.io/cab404 - { fingerprint = "1BB96810926F4E715DEF567E6BA7C26C3FDF7BB3"; } - { fingerprint = "1EBC648C64D6045463013B3EB7EFFC271D55DB8A"; } + {fingerprint = "1BB96810926F4E715DEF567E6BA7C26C3FDF7BB3";} + {fingerprint = "1EBC648C64D6045463013B3EB7EFFC271D55DB8A";} ]; }; CactiChameleon9 = { @@ -3996,8 +3996,8 @@ github = "cafkafk"; githubId = 89321978; keys = [ - { fingerprint = "7B9E E848 D074 AE03 7A0C 651A 8ED4 DEF7 375A 30C8"; } - { fingerprint = "208A 2A66 8A2F CDE7 B5D3 8F64 CDDC 792F 6552 51ED"; } + {fingerprint = "7B9E E848 D074 AE03 7A0C 651A 8ED4 DEF7 375A 30C8";} + {fingerprint = "208A 2A66 8A2F CDE7 B5D3 8F64 CDDC 792F 6552 51ED";} ]; }; cageyv = { @@ -4006,7 +4006,7 @@ githubId = 51059484; name = "Vladmir Samoylov"; keys = [ - { fingerprint = "8916 F727 734E 77AB 437F A33A 19AB 76F5 CEE1 1392"; } + {fingerprint = "8916 F727 734E 77AB 437F A33A 19AB 76F5 CEE1 1392";} ]; }; CaiqueFigueiredo = { @@ -4046,8 +4046,8 @@ githubId = 16057677; name = "Callum Leslie"; keys = [ - { fingerprint = "BC82 4BB5 1656 D144 285E A0EC D382 C4AF EECE AA90"; } - { fingerprint = "890B 06FB 209A 3E44 9491 C028 03B0 1F42 7831 BCFD"; } + {fingerprint = "BC82 4BB5 1656 D144 285E A0EC D382 C4AF EECE AA90";} + {fingerprint = "890B 06FB 209A 3E44 9491 C028 03B0 1F42 7831 BCFD";} ]; }; calvertvl = { @@ -4110,7 +4110,7 @@ github = "cameronraysmith"; githubId = 420942; name = "Cameron Smith"; - keys = [ { fingerprint = "3F14 C258 856E 88AE E0F9 661E FF04 3B36 8811 DD1C"; } ]; + keys = [{fingerprint = "3F14 C258 856E 88AE E0F9 661E FF04 3B36 8811 DD1C";}]; }; cameronyule = { email = "cameron@cameronyule.com"; @@ -4165,7 +4165,7 @@ email = "kiran@ostrolenk.co.uk"; github = "CardboardTurkey"; githubId = 34030186; - keys = [ { fingerprint = "8BC7 74E4 A2EC 7507 3B61 A647 0BBB 1C8B 1C36 39EE"; } ]; + keys = [{fingerprint = "8BC7 74E4 A2EC 7507 3B61 A647 0BBB 1C8B 1C36 39EE";}]; }; carloscraveiro = { email = "carlos.craveiro@usp.br"; @@ -4400,7 +4400,7 @@ github = "LostAttractor"; githubId = 46527539; name = "ChaosAttractor"; - keys = [ { fingerprint = "A137 4415 DB7C 6439 10EA 5BF1 0FEE 4E47 5940 E125"; } ]; + keys = [{fingerprint = "A137 4415 DB7C 6439 10EA 5BF1 0FEE 4E47 5940 E125";}]; }; charain = { email = "charain_li@outlook.com"; @@ -4442,7 +4442,7 @@ email = "chayleaf-nix@pavluk.org"; github = "chayleaf"; githubId = 9590981; - keys = [ { fingerprint = "4314 3701 154D 9E5F 7051 7ECF 7817 1AD4 6227 E68E"; } ]; + keys = [{fingerprint = "4314 3701 154D 9E5F 7051 7ECF 7817 1AD4 6227 E68E";}]; matrix = "@chayleaf:matrix.pavluk.org"; name = "Anna Pavlyuk"; }; @@ -4482,7 +4482,7 @@ githubId = 20300586; matrix = "@sammy:cherrykitten.dev"; name = "CherryKitten"; - keys = [ { fingerprint = "264C FA1A 194C 585D F822 F673 C01A 7CBB A617 BD5F"; } ]; + keys = [{fingerprint = "264C FA1A 194C 585D F822 F673 C01A 7CBB A617 BD5F";}]; }; cherrypiejam = { github = "cherrypiejam"; @@ -4505,14 +4505,14 @@ name = "Diego Rodriguez"; github = "Chili-Man"; githubId = 631802; - keys = [ { fingerprint = "099E 3F97 FA08 3D47 8C75 EBEC E0EB AD78 F019 0BD9"; } ]; + keys = [{fingerprint = "099E 3F97 FA08 3D47 8C75 EBEC E0EB AD78 F019 0BD9";}]; }; chillcicada = { email = "2210227279@qq.com"; name = "chillcicada"; github = "chillcicada"; githubId = 116548943; - keys = [ { fingerprint = "734C 20B3 33C4 FAB3 0BD0 743A 34C2 1231 0A99 754B"; } ]; + keys = [{fingerprint = "734C 20B3 33C4 FAB3 0BD0 743A 34C2 1231 0A99 754B";}]; }; chiroptical = { email = "chiroptical@gmail.com"; @@ -4630,7 +4630,7 @@ github = "christoph-heiss"; githubId = 7571069; name = "Christoph Heiss"; - keys = [ { fingerprint = "9C56 1D64 30B2 8D6B DCBC 9CEB 73D5 E7FD EE3D E49A"; } ]; + keys = [{fingerprint = "9C56 1D64 30B2 8D6B DCBC 9CEB 73D5 E7FD EE3D E49A";}]; }; christophcharles = { github = "christophcharles"; @@ -4648,7 +4648,7 @@ github = "chrjabs"; githubId = 98587286; name = "Christoph Jabs"; - keys = [ { fingerprint = "47D6 1FEB CD86 F3EC D2E3 D68A 83D0 74F3 48B2 FD9D"; } ]; + keys = [{fingerprint = "47D6 1FEB CD86 F3EC D2E3 D68A 83D0 74F3 48B2 FD9D";}]; }; chrpinedo = { github = "chrpinedo"; @@ -4666,7 +4666,7 @@ email = "nixos@chuang.cz"; github = "chuangzhu"; githubId = 31200881; - keys = [ { fingerprint = "5D03 A5E6 0754 A3E3 CA57 5037 E838 CED8 1CFF D3F9"; } ]; + keys = [{fingerprint = "5D03 A5E6 0754 A3E3 CA57 5037 E838 CED8 1CFF D3F9";}]; }; chvp = { email = "nixpkgs@cvpetegem.be"; @@ -4692,7 +4692,7 @@ email = "cig0.github@gmail.com"; github = "cig0"; githubId = 394089; - keys = [ { fingerprint = "1828 B459 DB9A 7EE2 03F4 7E6E AFBE ACC5 5D93 84A0"; } ]; + keys = [{fingerprint = "1828 B459 DB9A 7EE2 03F4 7E6E AFBE ACC5 5D93 84A0";}]; }; cigrainger = { name = "Christopher Grainger"; @@ -4728,7 +4728,7 @@ github = "RealityAnomaly"; githubId = 5567402; name = "Alex Zero"; - keys = [ { fingerprint = "A0AA 4646 B8F6 9D45 4553 5A88 A515 50ED B450 302C"; } ]; + keys = [{fingerprint = "A0AA 4646 B8F6 9D45 4553 5A88 A515 50ED B450 302C";}]; }; cizra = { email = "todurov+nix@gmail.com"; @@ -4789,7 +4789,7 @@ github = "clebs"; githubId = 1059661; name = "Borja Clemente"; - keys = [ { fingerprint = "C4E1 58BD FD33 3C77 B6C7 178E 2539 757E F64C 60DD"; } ]; + keys = [{fingerprint = "C4E1 58BD FD33 3C77 B6C7 178E 2539 757E F64C 60DD";}]; }; cleeyv = { email = "cleeyv@riseup.net"; @@ -4858,7 +4858,7 @@ github = "cmars"; githubId = 23741; name = "Casey Marshall"; - keys = [ { fingerprint = "6B78 7E5F B493 FA4F D009 5D10 6DEC 2758 ACD5 A973"; } ]; + keys = [{fingerprint = "6B78 7E5F B493 FA4F D009 5D10 6DEC 2758 ACD5 A973";}]; }; cmcdragonkai = { email = "roger.qiu@matrix.ai"; @@ -4913,7 +4913,7 @@ github = "Coca162"; githubId = 62479942; name = "Coca"; - keys = [ { fingerprint = "99CB 86FF 62BB 7DA4 8903 B16D 0328 2DF8 8179 AB19"; } ]; + keys = [{fingerprint = "99CB 86FF 62BB 7DA4 8903 B16D 0328 2DF8 8179 AB19";}]; }; cococolanosugar = { name = "George Xu"; @@ -4932,7 +4932,7 @@ github = "code-asher"; githubId = 45609798; name = "Asher"; - keys = [ { fingerprint = "6E3A FA6D 915C C2A4 D26F C53E 7BB4 BA9C 783D 2BBC"; } ]; + keys = [{fingerprint = "6E3A FA6D 915C C2A4 D26F C53E 7BB4 BA9C 783D 2BBC";}]; }; codebam = { name = "Sean Behan"; @@ -4940,7 +4940,7 @@ matrix = "@codebam:fedora.im"; github = "codebam"; githubId = 6035884; - keys = [ { fingerprint = "42CD E212 593C F2FD C723 48A8 0F6D 5021 A87F 92BA"; } ]; + keys = [{fingerprint = "42CD E212 593C F2FD C723 48A8 0F6D 5021 A87F 92BA";}]; }; codec = { email = "codec@fnord.cx"; @@ -4970,7 +4970,7 @@ name = "Guy Boldon"; github = "codifryed"; githubId = 27779510; - keys = [ { fingerprint = "FDF5 EF67 8CC1 FE22 1845 6A22 CF7B BB5B C756 1BD3"; } ]; + keys = [{fingerprint = "FDF5 EF67 8CC1 FE22 1845 6A22 CF7B BB5B C756 1BD3";}]; }; codsl = { email = "codsl@riseup.net"; @@ -4996,7 +4996,7 @@ matrix = "@cofob:matrix.org"; github = "cofob"; githubId = 49928332; - keys = [ { fingerprint = "5F3D 9D3D ECE0 8651 DE14 D29F ACAD 4265 E193 794D"; } ]; + keys = [{fingerprint = "5F3D 9D3D ECE0 8651 DE14 D29F ACAD 4265 E193 794D";}]; }; Cogitri = { email = "oss@cogitri.dev"; @@ -5030,7 +5030,7 @@ matrix = "@cole-h:matrix.org"; github = "cole-h"; githubId = 28582702; - keys = [ { fingerprint = "68B8 0D57 B2E5 4AC3 EC1F 49B0 B37E 0F23 7101 6A4C"; } ]; + keys = [{fingerprint = "68B8 0D57 B2E5 4AC3 EC1F 49B0 B37E 0F23 7101 6A4C";}]; }; colemickens = { email = "cole.mickens@gmail.com"; @@ -5168,8 +5168,8 @@ matrix = "@corbansolo:matrix.org"; name = "Corban Raun"; keys = [ - { fingerprint = "6607 0B24 8CE5 64ED 22CE 0950 A697 A56F 1F15 1189"; } - { fingerprint = "D8CB 816A B678 A4E6 1EC7 5325 230F 4AC1 53F9 0F29"; } + {fingerprint = "6607 0B24 8CE5 64ED 22CE 0950 A697 A56F 1F15 1189";} + {fingerprint = "D8CB 816A B678 A4E6 1EC7 5325 230F 4AC1 53F9 0F29";} ]; }; corbinwunderlich = { @@ -5224,7 +5224,7 @@ github = "cpu"; githubId = 292650; name = "Daniel McCarney"; - keys = [ { fingerprint = "8026 D24A A966 BF9C D3CD CB3C 08FB 2BFC 470E 75B4"; } ]; + keys = [{fingerprint = "8026 D24A A966 BF9C D3CD CB3C 08FB 2BFC 470E 75B4";}]; }; cr0n = { name = "cr0n"; @@ -5285,7 +5285,7 @@ name = "Robert Medeiros"; github = "crimeminister"; githubId = 29072; - keys = [ { fingerprint = "E3BD A35E 590A 8D29 701A 9723 F448 7FA0 4BC6 44F2"; } ]; + keys = [{fingerprint = "E3BD A35E 590A 8D29 701A 9723 F448 7FA0 4BC6 44F2";}]; }; crinklywrappr = { email = "crinklywrappr@pm.me"; @@ -5310,7 +5310,7 @@ name = "Jan Möller"; github = "croissong"; githubId = 4162215; - keys = [ { fingerprint = "CE97 9DEE 904C 26AA 3716 78C2 96A4 38F9 EE72 572F"; } ]; + keys = [{fingerprint = "CE97 9DEE 904C 26AA 3716 78C2 96A4 38F9 EE72 572F";}]; }; crschnick = { email = "crschnick@xpipe.io"; @@ -5324,14 +5324,14 @@ github = "CRTified"; githubId = 2440581; name = "Carl Richard Theodor Schneider"; - keys = [ { fingerprint = "2017 E152 BB81 5C16 955C E612 45BC C1E2 709B 1788"; } ]; + keys = [{fingerprint = "2017 E152 BB81 5C16 955C E612 45BC C1E2 709B 1788";}]; }; Cryolitia = { name = "Cryolitia PukNgae"; email = "Cryolitia@gmail.com"; github = "Cryolitia"; githubId = 23723294; - keys = [ { fingerprint = "1C3C 6547 538D 7152 310C 0EEA 84DD 0C01 30A5 4DF7"; } ]; + keys = [{fingerprint = "1C3C 6547 538D 7152 310C 0EEA 84DD 0C01 30A5 4DF7";}]; }; cryptix = { email = "cryptix@riseup.net"; @@ -5391,7 +5391,7 @@ github = "cust0dian"; githubId = 119854490; name = "Serg Nesterov"; - keys = [ { fingerprint = "6E7D BA30 DB5D BA60 693C 3BE3 1512 F6EB 84AE CC8C"; } ]; + keys = [{fingerprint = "6E7D BA30 DB5D BA60 693C 3BE3 1512 F6EB 84AE CC8C";}]; }; cwoac = { email = "oliver@codersoffortune.net"; @@ -5417,20 +5417,20 @@ github = "CyberShadow"; githubId = 160894; - keys = [ { fingerprint = "BBED 1B08 8CED 7F95 8917 FBE8 5004 F0FA D051 576D"; } ]; + keys = [{fingerprint = "BBED 1B08 8CED 7F95 8917 FBE8 5004 F0FA D051 576D";}]; }; cynerd = { name = "Karel Kočí"; email = "cynerd@email.cz"; github = "Cynerd"; githubId = 3811900; - keys = [ { fingerprint = "2B1F 70F9 5F1B 48DA 2265 A7FA A6BC 8B8C EB31 659B"; } ]; + keys = [{fingerprint = "2B1F 70F9 5F1B 48DA 2265 A7FA A6BC 8B8C EB31 659B";}]; }; cyntheticfox = { email = "cyntheticfox@gh0st.sh"; github = "cyntheticfox"; githubId = 17628961; - keys = [ { fingerprint = "73C1 C5DF 51E7 BB92 85E9 A262 5960 278C E235 F821"; } ]; + keys = [{fingerprint = "73C1 C5DF 51E7 BB92 85E9 A262 5960 278C E235 F821";}]; matrix = "@houstdav000:gh0st.ems.host"; name = "Cynthia Fox"; }; @@ -5446,8 +5446,8 @@ githubId = 2217136; name = "Ștefan D. Mihăilă"; keys = [ - { fingerprint = "CBC9 C7CC 51F0 4A61 3901 C723 6E68 A39B F16A 3ECB"; } - { fingerprint = "7EAB 1447 5BBA 7DDE 7092 7276 6220 AD78 4622 0A52"; } + {fingerprint = "CBC9 C7CC 51F0 4A61 3901 C723 6E68 A39B F16A 3ECB";} + {fingerprint = "7EAB 1447 5BBA 7DDE 7092 7276 6220 AD78 4622 0A52";} ]; }; cyplo = { @@ -5473,7 +5473,7 @@ github = "d-goldin"; githubId = 43349662; name = "Dima"; - keys = [ { fingerprint = "1C4E F4FE 7F8E D8B7 1E88 CCDF BAB1 D15F B7B4 D4CE"; } ]; + keys = [{fingerprint = "1C4E F4FE 7F8E D8B7 1E88 CCDF BAB1 D15F B7B4 D4CE";}]; }; d3vil0p3r = { name = "Antonio Voza"; @@ -5516,7 +5516,7 @@ email = "dadada@dadada.li"; github = "dadada"; githubId = 7216772; - keys = [ { fingerprint = "D68C 8469 5C08 7E0F 733A 28D0 EEB8 D1CE 62C4 DFEA"; } ]; + keys = [{fingerprint = "D68C 8469 5C08 7E0F 733A 28D0 EEB8 D1CE 62C4 DFEA";}]; }; dalance = { email = "dalance@gmail.com"; @@ -5535,7 +5535,7 @@ github = "DAlperin"; githubId = 16063713; name = "Dov Alperin"; - keys = [ { fingerprint = "4EED 5096 B925 86FA 1101 6673 7F2C 07B9 1B52 BB61"; } ]; + keys = [{fingerprint = "4EED 5096 B925 86FA 1101 6673 7F2C 07B9 1B52 BB61";}]; }; damhiya = { name = "SoonWon Moon"; @@ -5585,7 +5585,7 @@ email = "djc@djc.id.au"; github = "danc86"; githubId = 398575; - keys = [ { fingerprint = "1C56 01F1 D70A B56F EABB 6BC0 26B5 AA2F DAF2 F30A"; } ]; + keys = [{fingerprint = "1C56 01F1 D70A B56F EABB 6BC0 26B5 AA2F DAF2 F30A";}]; }; dancek = { email = "hannu.hartikainen@gmail.com"; @@ -5702,7 +5702,7 @@ matrix = "@danth:danth.me"; github = "danth"; githubId = 28959268; - keys = [ { fingerprint = "4779 D1D5 3C97 2EAE 34A5 ED3D D8AF C4BF 0567 0F9D"; } ]; + keys = [{fingerprint = "4779 D1D5 3C97 2EAE 34A5 ED3D D8AF C4BF 0567 0F9D";}]; }; dariof4 = { name = "dariof4"; @@ -5758,7 +5758,7 @@ email = "dasisdormax@mailbox.org"; github = "dasisdormax"; githubId = 3714905; - keys = [ { fingerprint = "E59B A198 61B0 A9ED C1FA 3FB2 02BA 0D44 80CA 6C44"; } ]; + keys = [{fingerprint = "E59B A198 61B0 A9ED C1FA 3FB2 02BA 0D44 80CA 6C44";}]; name = "Maximilian Wende"; }; dasj19 = { @@ -5784,7 +5784,7 @@ githubId = 28595242; name = "DataHearth"; keys = [ - { fingerprint = "E8F9 0B80 908E 723D 0EDF 0916 5803 CDA5 9C26 A96A"; } + {fingerprint = "E8F9 0B80 908E 723D 0EDF 0916 5803 CDA5 9C26 A96A";} ]; }; dav-wolff = { @@ -5822,7 +5822,7 @@ github = "david-r-cox"; githubId = 4259949; name = "David Cox"; - keys = [ { fingerprint = "0056 A3F6 9918 1E0D 8FF0 BCDE 65BB 07FA A4D9 4634"; } ]; + keys = [{fingerprint = "0056 A3F6 9918 1E0D 8FF0 BCDE 65BB 07FA A4D9 4634";}]; }; david-sawatzke = { email = "d-nix@sawatzke.dev"; @@ -5866,7 +5866,7 @@ github = "davidtwco"; githubId = 1295100; name = "David Wood"; - keys = [ { fingerprint = "5B08 313C 6853 E5BF FA91 A817 0176 0B4F 9F53 F154"; } ]; + keys = [{fingerprint = "5B08 313C 6853 E5BF FA91 A817 0176 0B4F 9F53 F154";}]; }; davisrichard437 = { email = "davisrichard437@gmail.com"; @@ -5927,7 +5927,7 @@ github = "dbirks"; githubId = 7545665; name = "David Birks"; - keys = [ { fingerprint = "B26F 9AD8 DA20 3392 EF87 C61A BB99 9F83 D9A1 9A36"; } ]; + keys = [{fingerprint = "B26F 9AD8 DA20 3392 EF87 C61A BB99 9F83 D9A1 9A36";}]; }; dblsaiko = { email = "me@dblsaiko.net"; @@ -5952,7 +5952,7 @@ github = "dbrgn"; githubId = 105168; name = "Danilo B."; - keys = [ { fingerprint = "20EE 002D 778A E197 EF7D 0D2C B993 FF98 A90C 9AB1"; } ]; + keys = [{fingerprint = "20EE 002D 778A E197 EF7D 0D2C B993 FF98 A90C 9AB1";}]; }; dbrock = { email = "daniel@brockman.se"; @@ -5999,14 +5999,14 @@ email = "dearrude@tfwno.gf"; github = "DearRude"; githubId = 30749142; - keys = [ { fingerprint = "4E35 F2E5 2132 D654 E815 A672 DB2C BC24 2868 6000"; } ]; + keys = [{fingerprint = "4E35 F2E5 2132 D654 E815 A672 DB2C BC24 2868 6000";}]; }; debling = { name = "Denilson S. Ebling"; email = "d.ebling8@gmail.com"; github = "debling"; githubId = 32403873; - keys = [ { fingerprint = "3EDD 9C88 B0F2 58F8 C25F 5D2C CCBC 8AA1 AF06 2142"; } ]; + keys = [{fingerprint = "3EDD 9C88 B0F2 58F8 C25F 5D2C CCBC 8AA1 AF06 2142";}]; }; declan = { name = "Declan Rixon"; @@ -6018,14 +6018,14 @@ github = "deeengan"; githubId = 87693324; name = "Dee Engan"; - keys = [ { fingerprint = "9C24 79F5 F0CE 48F4 00EE 4A5B B8ED 46EB 468B F72D"; } ]; + keys = [{fingerprint = "9C24 79F5 F0CE 48F4 00EE 4A5B B8ED 46EB 468B F72D";}]; }; deejayem = { email = "nixpkgs.bu5hq@simplelogin.com"; github = "deejayem"; githubId = 2564003; name = "David Morgan"; - keys = [ { fingerprint = "9B43 6B14 77A8 79C2 6CDB 6604 C171 2510 02C2 00F2"; } ]; + keys = [{fingerprint = "9B43 6B14 77A8 79C2 6CDB 6604 C171 2510 02C2 00F2";}]; }; deekahy = { email = "Lennart.Diego.Kahn@gmail.com"; @@ -6056,7 +6056,7 @@ matrix = "@defelo:matrix.defelo.de"; github = "Defelo"; githubId = 41747605; - keys = [ { fingerprint = "6130 3BBA D7D1 BF74 EFA4 4E3B E7FE 2087 E438 0E64"; } ]; + keys = [{fingerprint = "6130 3BBA D7D1 BF74 EFA4 4E3B E7FE 2087 E438 0E64";}]; }; definfo = { name = "Adrien SUN"; @@ -6087,7 +6087,7 @@ matrix = "@delafthi:matrix.org"; github = "delafthi"; githubId = 50531499; - keys = [ { fingerprint = "6DBB 0BB9 AEE6 2C2A 8059 7E1C 0092 6686 9818 63CB"; } ]; + keys = [{fingerprint = "6DBB 0BB9 AEE6 2C2A 8059 7E1C 0092 6686 9818 63CB";}]; }; delehef = { name = "Franklin Delehelle"; @@ -6444,7 +6444,7 @@ matrix = "@dtc:diogotc.com"; github = "diogotcorreia"; githubId = 7467891; - keys = [ { fingerprint = "111F 91B7 5F61 99D8 985B 4C70 12CF 31FD FF17 2B77"; } ]; + keys = [{fingerprint = "111F 91B7 5F61 99D8 985B 4C70 12CF 31FD FF17 2B77";}]; }; diogox = { name = "Diogo Xavier"; @@ -6492,14 +6492,14 @@ email = "hello@ditsuke.com"; github = "ditsuke"; githubId = 72784348; - keys = [ { fingerprint = "8FD2 153F 4889 541A 54F1 E09E 71B6 C31C 8A5A 9D21"; } ]; + keys = [{fingerprint = "8FD2 153F 4889 541A 54F1 E09E 71B6 C31C 8A5A 9D21";}]; }; dixslyf = { name = "Dixon Sean Low Yan Feng"; email = "dixonseanlow@protonmail.com"; github = "dixslyf"; githubId = 56017218; - keys = [ { fingerprint = "E6F4 BFB4 8DE3 893F 68FC A15F FF5F 4B30 A41B BAC8"; } ]; + keys = [{fingerprint = "E6F4 BFB4 8DE3 893F 68FC A15F FF5F 4B30 A41B BAC8";}]; }; Djabx = { email = "alexandre@badez.eu"; @@ -6636,7 +6636,7 @@ email = "silkmoth@protonmail.com"; github = "asciimoth"; githubId = 91414737; - keys = [ { fingerprint = "7D6B AE0A A98A FDE9 3396 E721 F87E 15B8 3AA7 3087"; } ]; + keys = [{fingerprint = "7D6B AE0A A98A FDE9 3396 E721 F87E 15B8 3AA7 3087";}]; }; dominikh = { email = "dominik@honnef.co"; @@ -6648,7 +6648,7 @@ github = "donovanglover"; githubId = 2374245; name = "Donovan Glover"; - keys = [ { fingerprint = "EE7D 158E F9E7 660E 0C33 86B2 8FC5 F7D9 0A5D 8F4D"; } ]; + keys = [{fingerprint = "EE7D 158E F9E7 660E 0C33 86B2 8FC5 F7D9 0A5D 8F4D";}]; }; donteatoreo = { name = "DontEatOreo"; @@ -6660,7 +6660,7 @@ name = "Dopplerian"; github = "Dopplerian"; githubId = 53937537; - keys = [ { fingerprint = "BBC4 C071 516B A147 8D07 F9DC D2FD E6EC 2E8C 2BF4"; } ]; + keys = [{fingerprint = "BBC4 C071 516B A147 8D07 F9DC D2FD E6EC 2E8C 2BF4";}]; }; doriath = { email = "tomasz.zurkowski@gmail.com"; @@ -6698,7 +6698,7 @@ github = "dottedmag"; githubId = 16120; name = "Misha Gusarov"; - keys = [ { fingerprint = "A8DF 1326 9E5D 9A38 E57C FAC2 9D20 F650 3E33 8888"; } ]; + keys = [{fingerprint = "A8DF 1326 9E5D 9A38 E57C FAC2 9D20 F650 3E33 8888";}]; }; dottybot = { name = "Scala Organization (dottybot)"; @@ -6723,7 +6723,7 @@ github = "dpausp"; githubId = 1965950; name = "Tobias Stenzel"; - keys = [ { fingerprint = "4749 0887 CF3B 85A1 6355 C671 78C7 DD40 DF23 FB16"; } ]; + keys = [{fingerprint = "4749 0887 CF3B 85A1 6355 C671 78C7 DD40 DF23 FB16";}]; }; dpc = { email = "dpc@dpc.pw"; @@ -6731,7 +6731,7 @@ githubId = 9209; matrix = "@dpc:matrix.org"; name = "Dawid Ciężarkiewicz"; - keys = [ { fingerprint = "0402 11D2 0830 2D71 5792 8197 86BB 1D5B 5575 7D38"; } ]; + keys = [{fingerprint = "0402 11D2 0830 2D71 5792 8197 86BB 1D5B 5575 7D38";}]; }; DPDmancul = { name = "Davide Peressoni"; @@ -6757,7 +6757,7 @@ github = "dr460nf1r3"; githubId = 12834713; name = "Nico Jensch"; - keys = [ { fingerprint = "D245 D484 F357 8CB1 7FD6 DA6B 67DB 29BF F3C9 6757"; } ]; + keys = [{fingerprint = "D245 D484 F357 8CB1 7FD6 DA6B 67DB 29BF F3C9 6757";}]; }; dragonginger = { email = "dragonginger10@gmail.com"; @@ -6824,7 +6824,7 @@ github = "drperceptron"; githubId = 92106371; name = "Dr Perceptron"; - keys = [ { fingerprint = "7E38 89D9 B1A8 B381 C8DE A15F 95EB 6DFF 26D1 CEB0"; } ]; + keys = [{fingerprint = "7E38 89D9 B1A8 B381 C8DE A15F 95EB 6DFF 26D1 CEB0";}]; }; DrSensor = { name = "Fahmi Akbar Wildana"; @@ -6839,7 +6839,7 @@ matrix = "@drupol:matrix.org"; github = "drupol"; githubId = 252042; - keys = [ { fingerprint = "85F3 72DF 4AF3 EF13 ED34 72A3 0AAF 2901 E804 0715"; } ]; + keys = [{fingerprint = "85F3 72DF 4AF3 EF13 ED34 72A3 0AAF 2901 E804 0715";}]; }; DrymarchonShaun = { name = "Shaun"; @@ -6858,14 +6858,14 @@ email = "daniel.salwasser@outlook.com"; github = "dsalwasser"; githubId = 148379503; - keys = [ { fingerprint = "DBA9 AE6B 84A9 C08E C4AD 1E46 6CD2 0B2D 0655 BDF6"; } ]; + keys = [{fingerprint = "DBA9 AE6B 84A9 C08E C4AD 1E46 6CD2 0B2D 0655 BDF6";}]; }; dschrempf = { name = "Dominik Schrempf"; email = "dominik.schrempf@gmail.com"; github = "dschrempf"; githubId = 5596239; - keys = [ { fingerprint = "62BC E2BD 49DF ECC7 35C7 E153 875F 2BCF 163F 1B29"; } ]; + keys = [{fingerprint = "62BC E2BD 49DF ECC7 35C7 E153 875F 2BCF 163F 1B29";}]; }; dseelp = { name = "dsee"; @@ -6897,7 +6897,7 @@ matrix = "@dani0854:matrix.org"; github = "dani0854"; githubId = 32674935; - keys = [ { fingerprint = "E033 FE26 0E62 224B B35C 75C9 DE8B 9CED 0696 C600"; } ]; + keys = [{fingerprint = "E033 FE26 0E62 224B B35C 75C9 DE8B 9CED 0696 C600";}]; }; dsymbol = { name = "dsymbol"; @@ -6909,14 +6909,14 @@ github = "dtomvan"; githubId = 51440893; name = "Tom van Dijk"; - keys = [ { fingerprint = "D044 F07B 8863 B681 26BD 79FE 7A98 4C82 07AD BA51"; } ]; + keys = [{fingerprint = "D044 F07B 8863 B681 26BD 79FE 7A98 4C82 07AD BA51";}]; }; dtzWill = { email = "w@wdtz.org"; github = "dtzWill"; githubId = 817330; name = "Will Dietz"; - keys = [ { fingerprint = "389A 78CB CD88 5E0C 4701 DEB9 FD42 C7D0 D414 94C8"; } ]; + keys = [{fingerprint = "389A 78CB CD88 5E0C 4701 DEB9 FD42 C7D0 D414 94C8";}]; }; dudymas = { email = "jeremy.white@cloudposse.com"; @@ -6936,8 +6936,8 @@ githubId = 1749762; name = "Mikhail Klementev"; keys = [ - { fingerprint = "5AC8 C9A1 68C7 9451 1A91 2295 C990 5BA7 2B5E 02BB"; } - { fingerprint = "5DD7 C6F6 0630 F08E DAE7 4711 1525 585D 1B43 C62A"; } + {fingerprint = "5AC8 C9A1 68C7 9451 1A91 2295 C990 5BA7 2B5E 02BB";} + {fingerprint = "5DD7 C6F6 0630 F08E DAE7 4711 1525 585D 1B43 C62A";} ]; }; dunxen = { @@ -6946,14 +6946,14 @@ github = "dunxen"; githubId = 3072149; name = "Duncan Dean"; - keys = [ { fingerprint = "9484 44FC E03B 05BA 5AB0 591E C37B 1C1D 44C7 86EE"; } ]; + keys = [{fingerprint = "9484 44FC E03B 05BA 5AB0 591E C37B 1C1D 44C7 86EE";}]; }; DutchGerman = { name = "Stefan Visser"; email = "stefan.visser@apm-ecampus.de"; github = "DutchGerman"; githubId = 60694691; - keys = [ { fingerprint = "A7C9 3DC7 E891 046A 980F 2063 F222 A13B 2053 27A5"; } ]; + keys = [{fingerprint = "A7C9 3DC7 E891 046A 980F 2063 F222 A13B 2053 27A5";}]; }; dvaerum = { email = "nixpkgs-maintainer@varum.dk"; @@ -7058,7 +7058,7 @@ github = "e1mo"; githubId = 61651268; name = "Nina Fromm"; - keys = [ { fingerprint = "67BE E563 43B6 420D 550E DF2A 6D61 7FD0 A85B AADA"; } ]; + keys = [{fingerprint = "67BE E563 43B6 420D 550E DF2A 6D61 7FD0 A85B AADA";}]; }; eadwu = { email = "edmund.wu@protonmail.com"; @@ -7101,7 +7101,7 @@ github = "ebbertd"; githubId = 20522234; name = "Daniel Ebbert"; - keys = [ { fingerprint = "E765 FCA3 D9BF 7FDB 856E AD73 47BC 1559 27CB B9C7"; } ]; + keys = [{fingerprint = "E765 FCA3 D9BF 7FDB 856E AD73 47BC 1559 27CB B9C7";}]; }; ebzzry = { email = "ebzzry@ebzzry.io"; @@ -7138,7 +7138,7 @@ github = "eddsteel"; githubId = 206872; name = "Edd Steel"; - keys = [ { fingerprint = "1BE8 48D7 6C7C 4C51 349D DDCC 3362 0159 D403 85A0"; } ]; + keys = [{fingerprint = "1BE8 48D7 6C7C 4C51 349D DDCC 3362 0159 D403 85A0";}]; }; edef = { email = "edef@edef.eu"; @@ -7164,7 +7164,7 @@ matrix = "@edgar.vincent:matrix.org"; github = "edgar-vincent"; githubId = 63352906; - keys = [ { fingerprint = "922F CA48 5FDB 20B1 ED1B A61F 284D 11D3 33C4 D21B"; } ]; + keys = [{fingerprint = "922F CA48 5FDB 20B1 ED1B A61F 284D 11D3 33C4 D21B";}]; }; edlimerkaj = { name = "Edli Merkaj"; @@ -7183,7 +7183,7 @@ email = "ericdrex@gmail.com"; github = "edrex"; githubId = 14615; - keys = [ { fingerprint = "AC47 2CCC 9867 4644 A9CF EB28 1C5C 1ED0 9F66 6824"; } ]; + keys = [{fingerprint = "AC47 2CCC 9867 4644 A9CF EB28 1C5C 1ED0 9F66 6824";}]; matrix = "@edrex:matrix.org"; name = "Eric Drechsel"; }; @@ -7475,7 +7475,7 @@ github = "emiliaaah"; githubId = 55017867; name = "Emilia"; - keys = [ { fingerprint = "F772 3569 4B43 B599 73C2 A931 1EFB E941 B89B B810"; } ]; + keys = [{fingerprint = "F772 3569 4B43 B599 73C2 A931 1EFB E941 B89B B810";}]; }; emilioziniades = { email = "emilioziniades@protonmail.com"; @@ -7587,7 +7587,7 @@ email = "eownerdead@disroot.org"; github = "eownerdead"; githubId = 141208772; - keys = [ { fingerprint = "4715 17D6 2495 A273 4DDB 5661 009E 5630 5CA5 4D63"; } ]; + keys = [{fingerprint = "4715 17D6 2495 A273 4DDB 5661 009E 5630 5CA5 4D63";}]; }; eperuffo = { email = "info@emanueleperuffo.com"; @@ -7623,7 +7623,7 @@ github = "erdnaxe"; githubId = 2663216; name = "Alexandre Iooss"; - keys = [ { fingerprint = "2D37 1AD2 7E2B BC77 97E1 B759 6C79 278F 3FCD CC02"; } ]; + keys = [{fingerprint = "2D37 1AD2 7E2B BC77 97E1 B759 6C79 278F 3FCD CC02";}]; }; ereslibre = { email = "ereslibre@ereslibre.es"; @@ -7663,7 +7663,7 @@ github = "erictapen"; githubId = 11532355; name = "Kerstin Humm"; - keys = [ { fingerprint = "F178 B4B4 6165 6D1B 7C15 B55D 4029 3358 C7B9 326B"; } ]; + keys = [{fingerprint = "F178 B4B4 6165 6D1B 7C15 B55D 4029 3358 C7B9 326B";}]; }; ericthemagician = { email = "eric@ericyen.com"; @@ -7696,7 +7696,7 @@ email = "erikeah@protonmail.com"; github = "erikeah"; githubId = 11900869; - keys = [ { fingerprint = "4142 0380 C7F8 BCDA CC9E 7ABA 0FF3 076B 71F2 5DEF"; } ]; + keys = [{fingerprint = "4142 0380 C7F8 BCDA CC9E 7ABA 0FF3 076B 71F2 5DEF";}]; name = "Erik Alonso"; }; erikryb = { @@ -7720,7 +7720,7 @@ erooke = { email = "ethan@roo.ke"; name = "Ethan Rooke"; - keys = [ { fingerprint = "B66B EB9F 6111 E44B 7588 8240 B287 4A77 049A 5923"; } ]; + keys = [{fingerprint = "B66B EB9F 6111 E44B 7588 8240 B287 4A77 049A 5923";}]; github = "erooke"; githubId = 46689793; matrix = "@ethan:roo.ke"; @@ -7769,7 +7769,7 @@ email = "esrh@esrh.me"; github = "eshrh"; githubId = 16175276; - keys = [ { fingerprint = "E4CE B0F0 B2EC 09A3 9678 F294 CC7A 7E3C 6CF3 1343"; } ]; + keys = [{fingerprint = "E4CE B0F0 B2EC 09A3 9678 F294 CC7A 7E3C 6CF3 1343";}]; }; EstebanMacanek = { name = "Esteban Macanek"; @@ -7783,8 +7783,8 @@ githubId = 60861925; name = "Ethan Carter Edwards"; keys = [ - { fingerprint = "0E69 0F46 3457 D812 3387 C978 F93D DAFA 26EF 2458"; } - { fingerprint = "2E51 F618 39D1 FA94 7A73 00C2 34C0 4305 D581 DBFE"; } + {fingerprint = "0E69 0F46 3457 D812 3387 C978 F93D DAFA 26EF 2458";} + {fingerprint = "2E51 F618 39D1 FA94 7A73 00C2 34C0 4305 D581 DBFE";} ]; }; ethercrow = { @@ -7824,7 +7824,7 @@ github = "etu"; githubId = 461970; name = "Elis Hirwing"; - keys = [ { fingerprint = "67FE 98F2 8C44 CF22 1828 E12F D57E FA62 5C9A 925F"; } ]; + keys = [{fingerprint = "67FE 98F2 8C44 CF22 1828 E12F D57E FA62 5C9A 925F";}]; }; eu90h = { email = "stefan@eu90h.com"; @@ -7862,7 +7862,7 @@ matrix = "@evalexpr:matrix.org"; github = "evalexpr"; githubId = 23485511; - keys = [ { fingerprint = "8129 5B85 9C5A F703 C2F4 1E29 2D1D 402E 1776 3DD6"; } ]; + keys = [{fingerprint = "8129 5B85 9C5A F703 C2F4 1E29 2D1D 402E 1776 3DD6";}]; }; evan-goode = { email = "mail@evangoo.de"; @@ -7919,7 +7919,7 @@ github = "evilbulgarian"; githubId = 1960413; name = "Vladi Gergov"; - keys = [ { fingerprint = "50D5 67C5 D693 15A2 76F5 5634 3758 5F3C A9EC BFA4"; } ]; + keys = [{fingerprint = "50D5 67C5 D693 15A2 76F5 5634 3758 5F3C A9EC BFA4";}]; }; evilmav = { email = "elenskiy.ilya@gmail.com"; @@ -8048,7 +8048,7 @@ name = "Fabian Affolter"; github = "fabaff"; githubId = 116184; - keys = [ { fingerprint = "2F6C 930F D3C4 7E38 6AFA 4EB4 E23C D2DD 36A4 397F"; } ]; + keys = [{fingerprint = "2F6C 930F D3C4 7E38 6AFA 4EB4 E23C D2DD 36A4 397F";}]; }; fabiangd = { email = "fabian.g.droege@gmail.com"; @@ -8061,7 +8061,7 @@ github = "fabianhauser"; githubId = 368799; name = "Fabian Hauser"; - keys = [ { fingerprint = "50B7 11F4 3DFD 2018 DCE6 E8D0 8A52 A140 BEBF 7D2C"; } ]; + keys = [{fingerprint = "50B7 11F4 3DFD 2018 DCE6 E8D0 8A52 A140 BEBF 7D2C";}]; }; fabianhjr = { email = "fabianhjr@protonmail.com"; @@ -8093,7 +8093,7 @@ github = "fangpenlin"; githubId = 201615; name = "Fang-Pen Lin"; - keys = [ { fingerprint = "7130 3454 A7CD 0F0A 941A F9A3 2A26 9964 AD29 2131"; } ]; + keys = [{fingerprint = "7130 3454 A7CD 0F0A 941A F9A3 2A26 9964 AD29 2131";}]; }; farcaller = { name = "Vladimir Pouzanov"; @@ -8124,7 +8124,7 @@ github = "fauxmight"; githubId = 53975399; name = "A Frederick Christensen"; - keys = [ { fingerprint = "5A49 F4F9 3EDC 21E9 B7CC 4E94 9EEF 4142 5355 8AC4"; } ]; + keys = [{fingerprint = "5A49 F4F9 3EDC 21E9 B7CC 4E94 9EEF 4142 5355 8AC4";}]; }; fazzi = { email = "faaris.ansari@proton.me"; @@ -8205,7 +8205,7 @@ matrix = "@nicof2000:matrix.org"; github = "felbinger"; githubId = 26925347; - keys = [ { fingerprint = "0797 D238 9769 CA1E 57B7 2ED9 2BA7 8116 87C9 0DE4"; } ]; + keys = [{fingerprint = "0797 D238 9769 CA1E 57B7 2ED9 2BA7 8116 87C9 0DE4";}]; }; felipe-9 = { name = "Felipe Pinto"; @@ -8213,8 +8213,8 @@ github = "Felipe-9"; githubId = 32753781; keys = [ - { fingerprint = "1533 0D57 3312 0936 AB38 3C9B 7D36 1E4B 83CD AEFB"; } - { fingerprint = "2BD0 AD01 F91D A0DC 47DF 0AEE 7AA1 649F 6B71 42F2"; } + {fingerprint = "1533 0D57 3312 0936 AB38 3C9B 7D36 1E4B 83CD AEFB";} + {fingerprint = "2BD0 AD01 F91D A0DC 47DF 0AEE 7AA1 649F 6B71 42F2";} ]; }; felipeqq2 = { @@ -8222,7 +8222,7 @@ email = "nixpkgs@felipeqq2.rocks"; github = "felipeqq2"; githubId = 71830138; - keys = [ { fingerprint = "7391 BF2D A2C3 B2C9 BE25 ACA9 C7A7 4616 F302 5DF4"; } ]; + keys = [{fingerprint = "7391 BF2D A2C3 B2C9 BE25 ACA9 C7A7 4616 F302 5DF4";}]; matrix = "@felipeqq2:pub.solar"; }; felixalbrigtsen = { @@ -8267,7 +8267,7 @@ # historical fingerprint = "6AB3 7A28 5420 9A41 82D9 0068 910A CB9F 6BD2 6F58"; } - { fingerprint = "7E08 6842 0934 AA1D 6821 1F2A 671E 39E6 744C 807D"; } + {fingerprint = "7E08 6842 0934 AA1D 6821 1F2A 671E 39E6 744C 807D";} ]; }; fernsehmuell = { @@ -8321,9 +8321,9 @@ github = "fidgetingbits"; githubId = 13679876; keys = [ - { fingerprint = "U+vNNrQxJRj3NPu9EoD0LFZssRbk6LBg4YPN5nFvQvs"; } - { fingerprint = "lX5ewVcaQLxuzqI92gujs3jFNki4d8qF+PATexMijoQ"; } - { fingerprint = "elY15tXap1tddxbBVoUoAioe1u0RDWti5rc9cauSmwo"; } + {fingerprint = "U+vNNrQxJRj3NPu9EoD0LFZssRbk6LBg4YPN5nFvQvs";} + {fingerprint = "lX5ewVcaQLxuzqI92gujs3jFNki4d8qF+PATexMijoQ";} + {fingerprint = "elY15tXap1tddxbBVoUoAioe1u0RDWti5rc9cauSmwo";} ]; }; figboy9 = { @@ -8416,7 +8416,7 @@ github = "Flakebi"; githubId = 6499211; name = "Sebastian Neubauer"; - keys = [ { fingerprint = "2F93 661D AC17 EA98 A104 F780 ECC7 55EE 583C 1672"; } ]; + keys = [{fingerprint = "2F93 661D AC17 EA98 A104 F780 ECC7 55EE 583C 1672";}]; }; Flameopathic = { email = "flameopathic@gmail.com"; @@ -8532,7 +8532,7 @@ github = "fnune"; githubId = 16181067; name = "Fausto Núñez Alberro"; - keys = [ { fingerprint = "668E 01D1 B129 3F42 0A0F 933A C880 6451 94A2 D562"; } ]; + keys = [{fingerprint = "668E 01D1 B129 3F42 0A0F 933A C880 6451 94A2 D562";}]; }; foo-dogsquared = { email = "foodogsquared@foodogsquared.one"; @@ -8540,7 +8540,7 @@ githubId = 34962634; matrix = "@foodogsquared:matrix.org"; name = "Gabriel Arazas"; - keys = [ { fingerprint = "DDD7 D0BD 602E 564B AA04 FC35 1431 0D91 4115 2B92"; } ]; + keys = [{fingerprint = "DDD7 D0BD 602E 564B AA04 FC35 1431 0D91 4115 2B92";}]; }; fooker = { email = "fooker@lab.sh"; @@ -8553,7 +8553,7 @@ github = "foolnotion"; githubId = 844222; name = "Bogdan Burlacu"; - keys = [ { fingerprint = "B722 6464 838F 8BDB 2BEA C8C8 5B0E FDDF BA81 6105"; } ]; + keys = [{fingerprint = "B722 6464 838F 8BDB 2BEA C8C8 5B0E FDDF BA81 6105";}]; }; Forden = { email = "forden@zuku.tech"; @@ -8584,7 +8584,7 @@ github = "fpletz"; githubId = 114159; name = "Franz Pletz"; - keys = [ { fingerprint = "8A39 615D CE78 AF08 2E23 F303 846F DED7 7926 17B4"; } ]; + keys = [{fingerprint = "8A39 615D CE78 AF08 2E23 F303 846F DED7 7926 17B4";}]; }; fps = { email = "mista.tapas@gmx.net"; @@ -8719,7 +8719,7 @@ githubId = 10263813; name = "Dominic Shelton"; matrix = "@frogamic:beeper.com"; - keys = [ { fingerprint = "779A 7CA8 D51C C53A 9C51 43F7 AAE0 70F0 67EC 00A5"; } ]; + keys = [{fingerprint = "779A 7CA8 D51C C53A 9C51 43F7 AAE0 70F0 67EC 00A5";}]; }; frontear = { name = "Ali Rizvi"; @@ -8727,7 +8727,7 @@ matrix = "@frontear:matrix.org"; github = "Frontear"; githubId = 31909298; - keys = [ { fingerprint = "6A25 DEBE 41DB 0C15 3AB5 BB34 5290 E18B 8705 1A83"; } ]; + keys = [{fingerprint = "6A25 DEBE 41DB 0C15 3AB5 BB34 5290 E18B 8705 1A83";}]; }; frontsideair = { email = "photonia@gmail.com"; @@ -8746,7 +8746,7 @@ email = "luiz@lferraz.com"; github = "Fryuni"; githubId = 11063910; - keys = [ { fingerprint = "2109 4B0E 560B 031E F539 62C8 2B56 8731 DB24 47EC"; } ]; + keys = [{fingerprint = "2109 4B0E 560B 031E F539 62C8 2B56 8731 DB24 47EC";}]; }; fsagbuya = { email = "fa@m-labs.ph"; @@ -8808,7 +8808,7 @@ github = "funkeleinhorn"; githubId = 103313934; name = "Funkeleinhorn"; - keys = [ { fingerprint = "689D 1C81 DA0D 1EB2 F029 D24E C7BE A25A 0A33 5A72"; } ]; + keys = [{fingerprint = "689D 1C81 DA0D 1EB2 F029 D24E C7BE A25A 0A33 5A72";}]; }; fusion809 = { email = "brentonhorne77@gmail.com"; @@ -8850,7 +8850,7 @@ github = "fx-chun"; githubId = 40049608; name = "Faye Chun"; - keys = [ { fingerprint = "ACB8 DB1F E88D A908 6332 BDB1 5A71 B010 2FD7 3FC0"; } ]; + keys = [{fingerprint = "ACB8 DB1F E88D A908 6332 BDB1 5A71 B010 2FD7 3FC0";}]; }; fxfactorial = { email = "edgar.factorial@gmail.com"; @@ -8900,14 +8900,14 @@ github = "gabyx"; githubId = 647437; name = "Gabriel Nützi"; - keys = [ { fingerprint = "90AE CCB9 7AD3 4CE4 3AED 9402 E969 172A B075 7EB8"; } ]; + keys = [{fingerprint = "90AE CCB9 7AD3 4CE4 3AED 9402 E969 172A B075 7EB8";}]; }; gador = { email = "florian.brandes@posteo.de"; github = "gador"; githubId = 1883533; name = "Florian Brandes"; - keys = [ { fingerprint = "0200 3EF8 8D2B CF2D 8F00 FFDC BBB3 E40E 5379 7FD9"; } ]; + keys = [{fingerprint = "0200 3EF8 8D2B CF2D 8F00 FFDC BBB3 E40E 5379 7FD9";}]; }; gaelj = { name = "Gaël James"; @@ -8921,7 +8921,7 @@ name = "Gaël Reyrol"; github = "gaelreyrol"; githubId = 498465; - keys = [ { fingerprint = "3492 D8FA ACFF 4C5F A56E 50B7 DFB9 B69A 2C42 7F61"; } ]; + keys = [{fingerprint = "3492 D8FA ACFF 4C5F A56E 50B7 DFB9 B69A 2C42 7F61";}]; }; GaetanLepage = { email = "gaetan@glepage.com"; @@ -8947,14 +8947,14 @@ name = "The Galaxy"; github = "ga1aksy"; githubId = 148551648; - keys = [ { fingerprint = "48CA 3873 9E9F CA8E 76A0 835A E3DE CF85 4212 E1EA"; } ]; + keys = [{fingerprint = "48CA 3873 9E9F CA8E 76A0 835A E3DE CF85 4212 E1EA";}]; }; gale-username = { name = "gale"; email = "git@galewebsite.com"; github = "gale-username"; githubId = 168143489; - keys = [ { fingerprint = "1234 3726 9042 01F3 CE07 59BF A3B6 1E91 5508 F702"; } ]; + keys = [{fingerprint = "1234 3726 9042 01F3 CE07 59BF A3B6 1E91 5508 F702";}]; }; galen = { github = "galenhuntington"; @@ -9086,7 +9086,7 @@ email = "genericnerdyusername@proton.me"; github = "GenericNerdyUsername"; githubId = 111183546; - keys = [ { fingerprint = "58CE D4BE 6B10 149E DA80 A990 2F48 6356 A4CB 30F3"; } ]; + keys = [{fingerprint = "58CE D4BE 6B10 149E DA80 A990 2F48 6356 A4CB 30F3";}]; }; genga898 = { email = "genga898@gmail.com"; @@ -9099,7 +9099,7 @@ email = "geno+dev@fireorbit.de"; github = "genofire"; githubId = 6905586; - keys = [ { fingerprint = "386E D1BF 848A BB4A 6B4A 3C45 FC83 907C 125B C2BC"; } ]; + keys = [{fingerprint = "386E D1BF 848A BB4A 6B4A 3C45 FC83 907C 125B C2BC";}]; }; geoffreyfrogeye = { name = "Geoffrey Frogeye"; @@ -9107,14 +9107,14 @@ matrix = "@geoffrey:frogeye.fr"; github = "GeoffreyFrogeye"; githubId = 1685403; - keys = [ { fingerprint = "4FBA 930D 314A 0321 5E2C DB0A 8312 C8CA C1BA C289"; } ]; + keys = [{fingerprint = "4FBA 930D 314A 0321 5E2C DB0A 8312 C8CA C1BA C289";}]; }; georgesalkhouri = { name = "Georges Alkhouri"; email = "incense.stitch_0w@icloud.com"; github = "GeorgesAlkhouri"; githubId = 6077574; - keys = [ { fingerprint = "1608 9E8D 7C59 54F2 6A7A 7BD0 8BD2 09DC C54F D339"; } ]; + keys = [{fingerprint = "1608 9E8D 7C59 54F2 6A7A 7BD0 8BD2 09DC C54F D339";}]; }; georgewhewell = { email = "georgerw@gmail.com"; @@ -9127,7 +9127,7 @@ github = "georgyo"; githubId = 19374; name = "George Shammas"; - keys = [ { fingerprint = "D0CF 440A A703 E0F9 73CB A078 82BB 70D5 41AE 2DB4"; } ]; + keys = [{fingerprint = "D0CF 440A A703 E0F9 73CB A078 82BB 70D5 41AE 2DB4";}]; }; gepbird = { email = "gutyina.gergo.2@gmail.com"; @@ -9135,8 +9135,8 @@ githubId = 29818440; name = "Gutyina Gergő"; keys = [ - { fingerprint = "RoAfvqa6w1l8Vdm3W60TDXurYwJ6h03VEGD+wDNGEwc"; } - { fingerprint = "MP2UpIRtJpbFFqyucP431H/FPCfn58UhEUTro4lXtRs"; } + {fingerprint = "RoAfvqa6w1l8Vdm3W60TDXurYwJ6h03VEGD+wDNGEwc";} + {fingerprint = "MP2UpIRtJpbFFqyucP431H/FPCfn58UhEUTro4lXtRs";} ]; }; geraldog = { @@ -9219,7 +9219,7 @@ github = "ghthor"; githubId = 160298; name = "Will Owens"; - keys = [ { fingerprint = "8E98 BB01 BFF8 AEA4 E303 FC4C 8074 09C9 2CE2 3033"; } ]; + keys = [{fingerprint = "8E98 BB01 BFF8 AEA4 E303 FC4C 8074 09C9 2CE2 3033";}]; }; ghuntley = { email = "ghuntley@ghuntley.com"; @@ -9239,14 +9239,14 @@ githubId = 334958; matrix = "@giggio:matrix.org"; name = "Giovanni Bassi"; - keys = [ { fingerprint = "275F 6749 AFD2 379D 1033 548C 1237 AB12 2E6F 4761"; } ]; + keys = [{fingerprint = "275F 6749 AFD2 379D 1033 548C 1237 AB12 2E6F 4761";}]; }; gigglesquid = { email = "jack.connors@protonmail.com"; github = "GiggleSquid"; githubId = 3685154; name = "Jack connors"; - keys = [ { fingerprint = "21DF 8034 B212 EDFF 9F19 9C19 F65B 7583 7ABF D019"; } ]; + keys = [{fingerprint = "21DF 8034 B212 EDFF 9F19 9C19 F65B 7583 7ABF D019";}]; }; gila = { email = "jeffry.molanus@gmail.com"; @@ -9347,7 +9347,7 @@ email = "root@gws.fyi"; github = "glittershark"; githubId = 1481027; - keys = [ { fingerprint = "0F11 A989 879E 8BBB FDC1 E236 44EF 5B5E 861C 09A7"; } ]; + keys = [{fingerprint = "0F11 A989 879E 8BBB FDC1 E236 44EF 5B5E 861C 09A7";}]; }; gloaming = { email = "ch9871@gmail.com"; @@ -9394,7 +9394,7 @@ github = "Gobidev"; githubId = 50576978; name = "Adrian Groh"; - keys = [ { fingerprint = "62BD BF30 83E9 7076 9665 B60B 3AA3 153E 98B0 D771"; } ]; + keys = [{fingerprint = "62BD BF30 83E9 7076 9665 B60B 3AA3 153E 98B0 D771";}]; }; goertzenator = { email = "daniel.goertzen@gmail.com"; @@ -9407,7 +9407,7 @@ github = "GoldsteinE"; githubId = 12019211; name = "Maximilian Siling"; - keys = [ { fingerprint = "0BAF 2D87 CB43 746F 6237 2D78 DE60 31AB A0BB 269A"; } ]; + keys = [{fingerprint = "0BAF 2D87 CB43 746F 6237 2D78 DE60 31AB A0BB 269A";}]; }; Golo300 = { email = "lanzingertm@gmail.com"; @@ -9450,21 +9450,21 @@ email = "gauvain@govanify.com"; github = "GovanifY"; githubId = 6375438; - keys = [ { fingerprint = "5214 2D39 A7CE F8FA 872B CA7F DE62 E1E2 A614 5556"; } ]; + keys = [{fingerprint = "5214 2D39 A7CE F8FA 872B CA7F DE62 E1E2 A614 5556";}]; }; gp2112 = { email = "me@guip.dev"; github = "gp2112"; githubId = 26512375; name = "Guilherme Paixão"; - keys = [ { fingerprint = "4382 7E28 86E5 C34F 38D5 7753 8C81 4D62 5FBD 99D1"; } ]; + keys = [{fingerprint = "4382 7E28 86E5 C34F 38D5 7753 8C81 4D62 5FBD 99D1";}]; }; gpanders = { name = "Gregory Anders"; email = "greg@gpanders.com"; github = "gpanders"; githubId = 8965202; - keys = [ { fingerprint = "B9D5 0EDF E95E ECD0 C135 00A9 56E9 3C2F B6B0 8BDB"; } ]; + keys = [{fingerprint = "B9D5 0EDF E95E ECD0 C135 00A9 56E9 3C2F B6B0 8BDB";}]; }; gpl = { email = "nixos-6c64ce18-bbbc-414f-8dcb-f9b6b47fe2bc@isopleth.org"; @@ -9526,14 +9526,14 @@ github = "GRBurst"; githubId = 4647221; name = "GRBurst"; - keys = [ { fingerprint = "7FC7 98AB 390E 1646 ED4D 8F1F 797F 6238 68CD 00C2"; } ]; + keys = [{fingerprint = "7FC7 98AB 390E 1646 ED4D 8F1F 797F 6238 68CD 00C2";}]; }; greaka = { email = "git@greaka.de"; github = "greaka"; githubId = 2805834; name = "Greaka"; - keys = [ { fingerprint = "6275 FB5C C9AC 9D85 FF9E 44C5 EE92 A5CD C367 118C"; } ]; + keys = [{fingerprint = "6275 FB5C C9AC 9D85 FF9E 44C5 EE92 A5CD C367 118C";}]; }; greg = { email = "greg.hellings@gmail.com"; @@ -9559,7 +9559,7 @@ matrix = "@gregor:giesen.net"; github = "grgi"; githubId = 6435815; - keys = [ { fingerprint = "0F92 602B 1860 4476 77F4 8A67 C303 16AA C10F 3EA7"; } ]; + keys = [{fingerprint = "0F92 602B 1860 4476 77F4 8A67 C303 16AA C10F 3EA7";}]; }; gridaphobe = { email = "eric@seidel.io"; @@ -9628,7 +9628,7 @@ github = "Guanran928"; githubId = 68757440; name = "Guanran Wang"; - keys = [ { fingerprint = "7835 BC13 4560 0660 0448 5A2C 91F9 7D9E D126 39CF"; } ]; + keys = [{fingerprint = "7835 BC13 4560 0660 0448 5A2C 91F9 7D9E D126 39CF";}]; }; guekka = { github = "Guekka"; @@ -9736,7 +9736,7 @@ matrix = "@h7x4:nani.wtf"; github = "h7x4"; githubId = 14929991; - keys = [ { fingerprint = "F7D3 7890 228A 9074 40E1 FD48 46B9 228E 814A 2AAC"; } ]; + keys = [{fingerprint = "F7D3 7890 228A 9074 40E1 FD48 46B9 228E 814A 2AAC";}]; }; hacker1024 = { name = "hacker1024"; @@ -9749,7 +9749,7 @@ email = "hadilq.dev@gmail.com"; github = "hadilq"; githubId = 5190539; - keys = [ { fingerprint = "AD3D 53CB A68A FEC0 8065 BCBB 416A D9E8 E372 C075"; } ]; + keys = [{fingerprint = "AD3D 53CB A68A FEC0 8065 BCBB 416A D9E8 E372 C075";}]; }; hagl = { email = "harald@glie.be"; @@ -9822,7 +9822,7 @@ github = "HaoZeke"; githubId = 4336207; name = "Rohit Goswami"; - keys = [ { fingerprint = "74B1 F67D 8E43 A94A 7554 0768 9CCC E364 02CB 49A6"; } ]; + keys = [{fingerprint = "74B1 F67D 8E43 A94A 7554 0768 9CCC E364 02CB 49A6";}]; }; happy-river = { email = "happyriver93@runbox.com"; @@ -9855,7 +9855,7 @@ github = "hardselius"; githubId = 1422583; name = "Martin Hardselius"; - keys = [ { fingerprint = "3F35 E4CA CBF4 2DE1 2E90 53E5 03A6 E6F7 8693 6619"; } ]; + keys = [{fingerprint = "3F35 E4CA CBF4 2DE1 2E90 53E5 03A6 E6F7 8693 6619";}]; }; HarisDotParis = { name = "Haris"; @@ -9887,7 +9887,7 @@ email = "haskellisierer@proton.me"; github = "HaskellHegemonie"; githubId = 73712423; - keys = [ { fingerprint = "A559 0A2A 5B06 1923 3917 5F13 5622 C205 6513 577B"; } ]; + keys = [{fingerprint = "A559 0A2A 5B06 1923 3917 5F13 5622 C205 6513 577B";}]; }; haslersn = { email = "haslersn@fius.informatik.uni-stuttgart.de"; @@ -9907,7 +9907,7 @@ email = "hauskens-git@disp.lease>"; github = "hauskens"; githubId = 79340822; - keys = [ { fingerprint = "3582 5B85 66C8 4F36 45C7 EC42 809F 7938 9CB1 8650"; } ]; + keys = [{fingerprint = "3582 5B85 66C8 4F36 45C7 EC42 809F 7938 9CB1 8650";}]; }; havvy = { email = "ryan.havvy@gmail.com"; @@ -9957,7 +9957,7 @@ email = "hdhog@hdhog.ru"; github = "hdhog"; githubId = 386666; - keys = [ { fingerprint = "A25F 6321 AAB4 4151 4085 9924 952E ACB7 6703 BA63"; } ]; + keys = [{fingerprint = "A25F 6321 AAB4 4151 4085 9924 952E ACB7 6703 BA63";}]; }; hectorj = { email = "hector.jusforgues+nixos@gmail.com"; @@ -10139,7 +10139,7 @@ github = "heyimnova"; githubId = 115728866; name = "Nova Witterick"; - keys = [ { fingerprint = "4304 6B43 8D83 078E 3DF7 10D6 DEB0 E15C 6D2A 5A7C"; } ]; + keys = [{fingerprint = "4304 6B43 8D83 078E 3DF7 10D6 DEB0 E15C 6D2A 5A7C";}]; }; heywoodlh = { email = "nixpkgs@heywoodlh.io"; @@ -10193,7 +10193,7 @@ github = "vale981"; githubId = 4025991; name = "Valentin Boettcher"; - keys = [ { fingerprint = "45A9 9917 578C D629 9F5F B5B4 C22D 4DE4 D7B3 2D19"; } ]; + keys = [{fingerprint = "45A9 9917 578C D629 9F5F B5B4 C22D 4DE4 D7B3 2D19";}]; }; hitsmaxft = { name = "Bhe Hongtyu"; @@ -10212,7 +10212,7 @@ name = "Henrik Jonsson"; github = "hkjn"; githubId = 287215; - keys = [ { fingerprint = "D618 7A03 A40A 3D56 62F5 4B46 03EF BF83 9A5F DC15"; } ]; + keys = [{fingerprint = "D618 7A03 A40A 3D56 62F5 4B46 03EF BF83 9A5F DC15";}]; }; hlad = { email = "hlad+nix@hlad.org"; @@ -10244,7 +10244,7 @@ email = "hello@haseebmajid.dev"; github = "hmajid2301"; githubId = 998807; - keys = [ { fingerprint = "A236 785D 59F1 9076 1E9C E8EC 7828 3DB3 D233 E1F9"; } ]; + keys = [{fingerprint = "A236 785D 59F1 9076 1E9C E8EC 7828 3DB3 D233 E1F9";}]; }; hmenke = { name = "Henri Menke"; @@ -10252,7 +10252,7 @@ matrix = "@hmenke:matrix.org"; github = "hmenke"; githubId = 1903556; - keys = [ { fingerprint = "F1C5 760E 45B9 9A44 72E9 6BFB D65C 9AFB 4C22 4DA3"; } ]; + keys = [{fingerprint = "F1C5 760E 45B9 9A44 72E9 6BFB D65C 9AFB 4C22 4DA3";}]; }; hodapp = { email = "hodapp87@gmail.com"; @@ -10302,7 +10302,7 @@ matrix = "@honnip:matrix.org"; github = "honnip"; githubId = 108175486; - keys = [ { fingerprint = "E4DD 51F7 FA3F DCF1 BAF6 A72C 576E 43EF 8482 E415"; } ]; + keys = [{fingerprint = "E4DD 51F7 FA3F DCF1 BAF6 A72C 576E 43EF 8482 E415";}]; }; hoppla20 = { email = "privat@vincentcui.de"; @@ -10322,7 +10322,7 @@ matrix = "@hougo:liiib.re"; github = "hrenard"; githubId = 7594435; - keys = [ { fingerprint = "3AE9 67F9 2C9F 55E9 03C8 283F 3A28 5FD4 7020 9C59"; } ]; + keys = [{fingerprint = "3AE9 67F9 2C9F 55E9 03C8 283F 3A28 5FD4 7020 9C59";}]; }; hoverbear = { email = "operator+nix@hoverbear.org"; @@ -10391,7 +10391,7 @@ matrix = "@huantian:huantian.dev"; github = "huantianad"; githubId = 20760920; - keys = [ { fingerprint = "731A 7A05 AD8B 3AE5 956A C227 4A03 18E0 4E55 5DE5"; } ]; + keys = [{fingerprint = "731A 7A05 AD8B 3AE5 956A C227 4A03 18E0 4E55 5DE5";}]; }; hubble = { name = "Hubble the Wolverine"; @@ -10441,7 +10441,7 @@ github = "HugoReeves"; githubId = 20039091; name = "Hugo Reeves"; - keys = [ { fingerprint = "78C2 E81C 828A 420B 269A EBC1 49FA 39F8 A7F7 35F9"; } ]; + keys = [{fingerprint = "78C2 E81C 828A 420B 269A EBC1 49FA 39F8 A7F7 35F9";}]; }; hulr = { github = "hulr"; @@ -10471,7 +10471,7 @@ github = "huskyistaken"; githubId = 20684258; name = "Luna Perego"; - keys = [ { fingerprint = "09E4 B981 9B93 5B0C 0B91 1274 0578 7332 9217 08FF"; } ]; + keys = [{fingerprint = "09E4 B981 9B93 5B0C 0B91 1274 0578 7332 9217 08FF";}]; }; hustlerone = { email = "nine-ball@tutanota.com"; @@ -10485,7 +10485,7 @@ github = "Huy-Ngo"; name = "Ngô Ngọc Đức Huy"; githubId = 19296926; - keys = [ { fingerprint = "DF12 23B1 A9FD C5BE 3DA5 B6F7 904A F1C7 CDF6 95C3"; } ]; + keys = [{fingerprint = "DF12 23B1 A9FD C5BE 3DA5 B6F7 904A F1C7 CDF6 95C3";}]; }; hxtmdev = { email = "daniel@hxtm.dev"; @@ -10510,7 +10510,7 @@ email = "bryan@hyshka.com"; github = "hyshka"; githubId = 2090758; - keys = [ { fingerprint = "24F4 1925 28C4 8797 E539 F247 DB2D 93D1 BFAA A6EA"; } ]; + keys = [{fingerprint = "24F4 1925 28C4 8797 E539 F247 DB2D 93D1 BFAA A6EA";}]; }; hyzual = { email = "hyzual@gmail.com"; @@ -10545,7 +10545,7 @@ github = "iagocq"; githubId = 18238046; name = "Iago Manoel Brito"; - keys = [ { fingerprint = "DF90 9D58 BEE4 E73A 1B8C 5AF3 35D3 9F9A 9A1B C8DA"; } ]; + keys = [{fingerprint = "DF90 9D58 BEE4 E73A 1B8C 5AF3 35D3 9F9A 9A1B C8DA";}]; }; iamanaws = { email = "nixpkgs.yjzaw@slmail.me"; @@ -10583,7 +10583,7 @@ github = "ibizaman"; githubId = 1044950; name = "Pierre Penninckx"; - keys = [ { fingerprint = "A01F 10C6 7176 B2AE 2A34 1A56 D4C5 C37E 6031 A3FE"; } ]; + keys = [{fingerprint = "A01F 10C6 7176 B2AE 2A34 1A56 D4C5 C37E 6031 A3FE";}]; }; iblech = { email = "iblech@speicherleck.de"; @@ -10827,7 +10827,7 @@ github = "impl"; githubId = 41129; name = "Noah Fontes"; - keys = [ { fingerprint = "F5B2 BE1B 9AAD 98FE 2916 5597 3665 FFF7 9D38 7BAA"; } ]; + keys = [{fingerprint = "F5B2 BE1B 9AAD 98FE 2916 5597 3665 FFF7 9D38 7BAA";}]; }; imrying = { email = "philiprying@gmail.com"; @@ -10840,7 +10840,7 @@ github = "ImSapphire"; githubId = 48931512; name = "Sapphire"; - keys = [ { fingerprint = "D303 4473 1843 D27B 5D4E 2273 6429 11AA 4025 C8CC"; } ]; + keys = [{fingerprint = "D303 4473 1843 D27B 5D4E 2273 6429 11AA 4025 C8CC";}]; }; imsick = { email = "lent-lather-excuse@duck.com"; @@ -10909,7 +10909,7 @@ github = "infinisil"; githubId = 20525370; name = "Silvan Mosberger"; - keys = [ { fingerprint = "6C2B 55D4 4E04 8266 6B7D DA1A 422E 9EDA E015 7170"; } ]; + keys = [{fingerprint = "6C2B 55D4 4E04 8266 6B7D DA1A 422E 9EDA E015 7170";}]; }; ingenieroariel = { email = "ariel@nunez.co"; @@ -10922,7 +10922,7 @@ github = "Intuinewin"; githubId = 13691729; name = "Antoine Labarussias"; - keys = [ { fingerprint = "5CB5 9AA0 D180 1997 2FB3 E0EC 943A 1DE9 372E BE4E"; } ]; + keys = [{fingerprint = "5CB5 9AA0 D180 1997 2FB3 E0EC 943A 1DE9 372E BE4E";}]; }; invokes-su = { email = "nixpkgs-commits@deshaw.com"; @@ -10976,7 +10976,7 @@ matrix = "@irenes:matrix.org"; github = "IreneKnapp"; githubId = 157678; - keys = [ { fingerprint = "E864 BDFA AB55 36FD C905 5195 DBF2 52AF FB26 19FD"; } ]; + keys = [{fingerprint = "E864 BDFA AB55 36FD C905 5195 DBF2 52AF FB26 19FD";}]; }; ironicbadger = { email = "alexktz@gmail.com"; @@ -11008,7 +11008,7 @@ email = "isgy@teiyg.com"; github = "tgys"; githubId = 13622947; - keys = [ { fingerprint = "1412 816B A9FA F62F D051 1975 D3E1 B013 B463 1293"; } ]; + keys = [{fingerprint = "1412 816B A9FA F62F D051 1975 D3E1 B013 B463 1293";}]; }; isotoxal = { name = "Abhinav Kuruvila Joseph"; @@ -11032,14 +11032,14 @@ github = "itepastra"; githubId = 27058689; email = "itepastra@gmail.com"; - keys = [ { fingerprint = "E681 4CAF 06AE B076 D55D 3E32 A16C DCBF 1472 541F"; } ]; + keys = [{fingerprint = "E681 4CAF 06AE B076 D55D 3E32 A16C DCBF 1472 541F";}]; }; itsvic-dev = { email = "contact@itsvic.dev"; name = "Victor B."; github = "itsvic-dev"; githubId = 17727163; - keys = [ { fingerprint = "FBAA B86A 101B 4C5F D4F1 25D2 E93D DAC1 7E5D 6CA1"; } ]; + keys = [{fingerprint = "FBAA B86A 101B 4C5F D4F1 25D2 E93D DAC1 7E5D 6CA1";}]; }; ius = { email = "j.de.gram@gmail.com"; @@ -11052,7 +11052,7 @@ name = "iv-nn"; github = "iv-nn"; githubId = 49885246; - keys = [ { fingerprint = "6358 EF87 86E0 EF2F 1628 103F BAB5 F165 1C71 C9C3"; } ]; + keys = [{fingerprint = "6358 EF87 86E0 EF2F 1628 103F BAB5 F165 1C71 C9C3";}]; }; ivalery111 = { name = "Valery"; @@ -11095,13 +11095,13 @@ github = "ivanbrennan"; githubId = 1672874; name = "Ivan Brennan"; - keys = [ { fingerprint = "7311 2700 AB4F 4CDF C68C F6A5 79C3 C47D C652 EA54"; } ]; + keys = [{fingerprint = "7311 2700 AB4F 4CDF C68C F6A5 79C3 C47D C652 EA54";}]; }; ivankovnatsky = { github = "ivankovnatsky"; githubId = 75213; name = "Ivan Kovnatsky"; - keys = [ { fingerprint = "6BD3 7248 30BD 941E 9180 C1A3 3A33 FA4C 82ED 674F"; } ]; + keys = [{fingerprint = "6BD3 7248 30BD 941E 9180 C1A3 3A33 FA4C 82ED 674F";}]; }; ivanmoreau = { email = "Iván Molina Rebolledo"; @@ -11132,7 +11132,7 @@ github = "ixhbinphoenix"; githubId = 47122082; name = "Emilia Nyx"; - keys = [ { fingerprint = "91DB 328E 3FAB 8A08 9AF6 5276 3E62 370C 1D77 3013"; } ]; + keys = [{fingerprint = "91DB 328E 3FAB 8A08 9AF6 5276 3E62 370C 1D77 3013";}]; }; ixmatus = { email = "parnell@digitalmentat.com"; @@ -11229,7 +11229,7 @@ email = "contact@ja1den.me"; github = "ja1den"; githubId = 49811314; - keys = [ { fingerprint = "CC36 4CF4 32DD 443F 27FC 033C 3475 AA20 D72F 6A93"; } ]; + keys = [{fingerprint = "CC36 4CF4 32DD 443F 27FC 033C 3475 AA20 D72F 6A93";}]; }; jab = { name = "Joshua Bronson"; @@ -11284,14 +11284,14 @@ email = "jacobkoziej@gmail.com"; github = "jacobkoziej"; githubId = 45084216; - keys = [ { fingerprint = "1BF9 8D10 E0D0 0B41 5723 5836 4C13 3A84 E646 9228"; } ]; + keys = [{fingerprint = "1BF9 8D10 E0D0 0B41 5723 5836 4C13 3A84 E646 9228";}]; }; JacoMalan1 = { name = "Jaco Malan"; email = "jacom@codelog.co.za"; github = "JacoMalan1"; githubId = 10290409; - keys = [ { fingerprint = "339C 9213 7F2D 5D6E 2B6A 6E98 240B B4C4 27BC 327A"; } ]; + keys = [{fingerprint = "339C 9213 7F2D 5D6E 2B6A 6E98 240B B4C4 27BC 327A";}]; }; jaculabilis = { name = "Tim Van Baak"; @@ -11316,7 +11316,7 @@ github = "jakecleary"; githubId = 4572429; name = "Jake Cleary"; - keys = [ { fingerprint = "6192 E5CC 28B8 FA7E F5F3 775F 3726 5B1E 496C 92A2"; } ]; + keys = [{fingerprint = "6192 E5CC 28B8 FA7E F5F3 775F 3726 5B1E 496C 92A2";}]; }; jakedevs = { email = "work@jakedevs.net"; @@ -11330,7 +11330,7 @@ matrix = "@jakehamilton:matrix.org"; github = "jakehamilton"; githubId = 7005773; - keys = [ { fingerprint = "B982 0250 1720 D540 6A18 2DA8 188E 4945 E85B 2D21"; } ]; + keys = [{fingerprint = "B982 0250 1720 D540 6A18 2DA8 188E 4945 E85B 2D21";}]; }; jakeisnt = { name = "Jacob Chvatal"; @@ -11379,7 +11379,7 @@ name = "jamalam"; github = "Jamalam360"; githubId = 56727311; - keys = [ { fingerprint = "B1B2 2BA0 FC39 D4B4 2240 5F55 D86C D68E 8DB2 E368"; } ]; + keys = [{fingerprint = "B1B2 2BA0 FC39 D4B4 2240 5F55 D86C D68E 8DB2 E368";}]; }; james-atkins = { name = "James Atkins"; @@ -11391,7 +11391,7 @@ name = "James Ward"; github = "jamesward"; githubId = 65043; - keys = [ { fingerprint = "82F9 4BBD F95C 247B BD21 396B 9A0B 94DE C0FF A7EE"; } ]; + keys = [{fingerprint = "82F9 4BBD F95C 247B BD21 396B 9A0B 94DE C0FF A7EE";}]; }; jamiemagee = { email = "jamie.magee@gmail.com"; @@ -11575,14 +11575,14 @@ githubId = 740022; matrix = "@jeff:ocjtech.us"; name = "Jeffrey C. Ollie"; - keys = [ { fingerprint = "A8CF 5B72 ABC3 9A17 3FEA 620E 6F86 035A 6D97 044E"; } ]; + keys = [{fingerprint = "A8CF 5B72 ABC3 9A17 3FEA 620E 6F86 035A 6D97 044E";}]; }; jcouyang = { email = "oyanglulu@gmail.com"; github = "jcouyang"; githubId = 1235045; name = "Jichao Ouyang"; - keys = [ { fingerprint = "A506 C38D 5CC8 47D0 DF01 134A DA8B 833B 5260 4E63"; } ]; + keys = [{fingerprint = "A506 C38D 5CC8 47D0 DF01 134A DA8B 833B 5260 4E63";}]; }; jcs090218 = { email = "jcs090218@gmail.com"; @@ -11618,7 +11618,7 @@ email = "jdanek@redhat.com"; github = "jirkadanek"; githubId = 17877663; - keys = [ { fingerprint = "D4A6 F051 AD58 2E7C BCED 5439 6927 5CAD F15D 872E"; } ]; + keys = [{fingerprint = "D4A6 F051 AD58 2E7C BCED 5439 6927 5CAD F15D 872E";}]; name = "Jiri Daněk"; }; jdbaldry = { @@ -11747,7 +11747,7 @@ github = "jervw"; githubId = 53620688; name = "Jere Vuola"; - keys = [ { fingerprint = "56C2 5B5B 2075 6352 B4B0 E17E F188 3717 47DA 5895"; } ]; + keys = [{fingerprint = "56C2 5B5B 2075 6352 B4B0 E17E F188 3717 47DA 5895";}]; }; jeschli = { email = "jeschli@gmail.com"; @@ -11801,14 +11801,14 @@ github = "jezcope"; githubId = 457628; name = "Jez Cope"; - keys = [ { fingerprint = "D9DA 3E47 E8BD 377D A317 B3D0 9E42 CE07 1C45 59D1"; } ]; + keys = [{fingerprint = "D9DA 3E47 E8BD 377D A317 B3D0 9E42 CE07 1C45 59D1";}]; }; jfchevrette = { email = "jfchevrette@gmail.com"; github = "jfchevrette"; githubId = 3001; name = "Jean-Francois Chevrette"; - keys = [ { fingerprint = "B612 96A9 498E EECD D5E9 C0F0 67A0 5858 0129 0DC6"; } ]; + keys = [{fingerprint = "B612 96A9 498E EECD D5E9 C0F0 67A0 5858 0129 0DC6";}]; }; jflanglois = { email = "yourstruly@julienlanglois.me"; @@ -11821,7 +11821,7 @@ email = "jeremyfleischman@gmail.com"; github = "jfly"; githubId = 277474; - keys = [ { fingerprint = "F1F1 3395 8E8E 9CC4 D9FC 9647 1931 9CD8 416A 642B"; } ]; + keys = [{fingerprint = "F1F1 3395 8E8E 9CC4 D9FC 9647 1931 9CD8 416A 642B";}]; }; jfroche = { name = "Jean-François Roche"; @@ -11829,7 +11829,7 @@ matrix = "@jfroche:matrix.pyxel.cloud"; github = "jfroche"; githubId = 207369; - keys = [ { fingerprint = "7EB1 C02A B62B B464 6D7C E4AE D1D0 9DE1 69EA 19A0"; } ]; + keys = [{fingerprint = "7EB1 C02A B62B B464 6D7C E4AE D1D0 9DE1 69EA 19A0";}]; }; jfvillablanca = { email = "jmfv.dev@gmail.com"; @@ -11903,7 +11903,7 @@ email = "joel@airwebreathe.org.uk"; github = "jhol"; githubId = 1449493; - keys = [ { fingerprint = "08F7 2546 95DE EAEF 03DE B0E4 D874 562D DC99 D889"; } ]; + keys = [{fingerprint = "08F7 2546 95DE EAEF 03DE B0E4 D874 562D DC99 D889";}]; }; jhollowe = { email = "jhollowe@johnhollowell.com"; @@ -11999,7 +11999,7 @@ github = "jlamur"; githubId = 7054317; name = "Jules Lamur"; - keys = [ { fingerprint = "B768 6CD7 451A 650D 9C54 4204 6710 CF0C 1CBD 7762"; } ]; + keys = [{fingerprint = "B768 6CD7 451A 650D 9C54 4204 6710 CF0C 1CBD 7762";}]; }; jlbribeiro = { email = "nix@jlbribeiro.com"; @@ -12074,9 +12074,9 @@ name = "João Figueira"; keys = [ # GitHub signing key - { fingerprint = "EC08 7AA3 DEAD A972 F015 6371 DC7A E56A E98E 02D7"; } + {fingerprint = "EC08 7AA3 DEAD A972 F015 6371 DC7A E56A E98E 02D7";} # Email encryption - { fingerprint = "816D 23F5 E672 EC58 7674 4A73 197F 9A63 2D13 9E30"; } + {fingerprint = "816D 23F5 E672 EC58 7674 4A73 197F 9A63 2D13 9E30";} ]; }; jmendyk = { @@ -12155,14 +12155,14 @@ github = "joaoymoreira"; githubId = 151087767; name = "João Moreira"; - keys = [ { fingerprint = "F457 0A3A 5F89 22F8 F572 E075 EF8B F2C8 C5F4 097D"; } ]; + keys = [{fingerprint = "F457 0A3A 5F89 22F8 F572 E075 EF8B F2C8 C5F4 097D";}]; }; joaquintrinanes = { email = "hi@joaquint.io"; github = "JoaquinTrinanes"; name = "Joaquín Triñanes"; githubId = 1385934; - keys = [ { fingerprint = "3A13 5C15 E1D5 850D 2F90 AB25 6E14 46DD 451C 6BAF"; } ]; + keys = [{fingerprint = "3A13 5C15 E1D5 850D 2F90 AB25 6E14 46DD 451C 6BAF";}]; }; joblade = { email = "bladeur13@free.fr"; @@ -12313,7 +12313,7 @@ github = "joinemm"; githubId = 26210439; name = "Joonas Rautiola"; - keys = [ { fingerprint = "87EC DD30 6614 E510 5299 F0D4 090E B48A 4669 AA54"; } ]; + keys = [{fingerprint = "87EC DD30 6614 E510 5299 F0D4 090E B48A 4669 AA54";}]; }; Jojo4GH = { name = "Jonas Broeckmann"; @@ -12326,7 +12326,7 @@ matrix = "@jojosch:jswc.de"; github = "jojosch"; githubId = 327488; - keys = [ { fingerprint = "7249 70E6 A661 D84E 8B47 678A 0590 93B1 A278 BCD0"; } ]; + keys = [{fingerprint = "7249 70E6 A661 D84E 8B47 678A 0590 93B1 A278 BCD0";}]; }; jokatzke = { email = "jokatzke@fastmail.com"; @@ -12352,7 +12352,7 @@ github = "jolars"; githubId = 13087841; name = "Johan Larsson"; - keys = [ { fingerprint = "F0D6 BDE7 C7D1 6B3F 7883 73E7 2A41 C0FE DD6F F540"; } ]; + keys = [{fingerprint = "F0D6 BDE7 C7D1 6B3F 7883 73E7 2A41 C0FE DD6F F540";}]; }; jolheiser = { email = "nixpkgs@jolheiser.com"; @@ -12366,7 +12366,7 @@ matrix = "@jona:matrix.jonaenz.de"; github = "JonaEnz"; githubId = 57130301; - keys = [ { fingerprint = "1CC5 B67C EB9A 13A5 EDF6 F10E 0B4A 3662 FC58 9202"; } ]; + keys = [{fingerprint = "1CC5 B67C EB9A 13A5 EDF6 F10E 0B4A 3662 FC58 9202";}]; }; jonas-w = { email = "nixpkgs@03j.de"; @@ -12430,7 +12430,7 @@ email = "jordan@bravo.cc"; github = "jordan-bravo"; githubId = 62706808; - keys = [ { fingerprint = "9C7B 45CD CF53 B483 9BB8 000E C6E3 AECE B5E1 0B1E"; } ]; + keys = [{fingerprint = "9C7B 45CD CF53 B483 9BB8 000E C6E3 AECE B5E1 0B1E";}]; }; jordanisaacs = { name = "Jordan Isaacs"; @@ -12609,7 +12609,7 @@ matrix = "@6pak:matrix.org"; github = "js6pak"; githubId = 35262707; - keys = [ { fingerprint = "66D1 1EA6 571D E4F9 16B3 B8EB 3E3C D91E B1AA FB06"; } ]; + keys = [{fingerprint = "66D1 1EA6 571D E4F9 16B3 B8EB 3E3C D91E B1AA FB06";}]; }; jshcmpbll = { email = "me@joshuadcampbell.com"; @@ -12665,7 +12665,7 @@ name = "Julien Coolen"; github = "jtcoolen"; githubId = 54635632; - keys = [ { fingerprint = "4C68 56EE DFDA 20FB 77E8 9169 1964 2151 C218 F6F5"; } ]; + keys = [{fingerprint = "4C68 56EE DFDA 20FB 77E8 9169 1964 2151 C218 F6F5";}]; }; jthulhu = { name = "Adrien Mathieu"; @@ -12704,7 +12704,7 @@ github = "jcmuller"; matrix = "@jcmuller@beeper.com"; name = "Juan C. Müller"; - keys = [ { fingerprint = "D78D 25D8 A1B8 2596 267F 35B8 F44E A51A 28F9 B4A7"; } ]; + keys = [{fingerprint = "D78D 25D8 A1B8 2596 267F 35B8 F44E A51A 28F9 B4A7";}]; }; juaningan = { email = "juaningan@gmail.com"; @@ -12743,7 +12743,7 @@ matrix = "@julian:matrix.epiccraft-mc.de"; github = "juli0604"; githubId = 62934740; - keys = [ { fingerprint = "E9C6 44C7 F6AA A865 4CB9 2723 22C8 B0CE B9AC 4AFF"; } ]; + keys = [{fingerprint = "E9C6 44C7 F6AA A865 4CB9 2723 22C8 B0CE B9AC 4AFF";}]; }; juliabru = { name = "Julia Brunenberg"; @@ -12761,7 +12761,7 @@ name = "Julian Partanen"; github = "JulianFP"; githubId = 70963316; - keys = [ { fingerprint = "C61D 7747 43DE EF05 4E4A 3AC1 6FE2 79EB 5C9F 3466"; } ]; + keys = [{fingerprint = "C61D 7747 43DE EF05 4E4A 3AC1 6FE2 79EB 5C9F 3466";}]; }; juliendehos = { email = "dehos@lisic.univ-littoral.fr"; @@ -12810,7 +12810,7 @@ github = "junestepp"; githubId = 26205306; name = "June Stepp"; - keys = [ { fingerprint = "2561 0243 2233 CFE6 E13E 3C33 348C 6EB3 39AE C582"; } ]; + keys = [{fingerprint = "2561 0243 2233 CFE6 E13E 3C33 348C 6EB3 39AE C582";}]; }; junjihashimoto = { email = "junji.hashimoto@gmail.com"; @@ -12870,7 +12870,7 @@ github = "jvanbruegge"; githubId = 1529052; name = "Jan van Brügge"; - keys = [ { fingerprint = "3513 5CE5 77AD 711F 3825 9A99 3665 72BE 7D6C 78A2"; } ]; + keys = [{fingerprint = "3513 5CE5 77AD 711F 3825 9A99 3665 72BE 7D6C 78A2";}]; }; jwatt = { email = "jwatt@broken.watch"; @@ -12883,7 +12883,7 @@ github = "jwiegley"; githubId = 8460; name = "John Wiegley"; - keys = [ { fingerprint = "4710 CF98 AF9B 327B B80F 60E1 46C4 BD1A 7AC1 4BA2"; } ]; + keys = [{fingerprint = "4710 CF98 AF9B 327B B80F 60E1 46C4 BD1A 7AC1 4BA2";}]; }; jwijenbergh = { email = "jeroenwijenbergh@protonmail.com"; @@ -12896,7 +12896,7 @@ github = "jwillikers"; githubId = 19399197; name = "Jordan Williams"; - keys = [ { fingerprint = "A6AB 406A F5F1 DE02 CEA3 B6F0 9FB4 2B0E 7F65 7D8C"; } ]; + keys = [{fingerprint = "A6AB 406A F5F1 DE02 CEA3 B6F0 9FB4 2B0E 7F65 7D8C";}]; }; jwygoda = { email = "jaroslaw@wygoda.me"; @@ -12940,14 +12940,14 @@ github = "kachick"; githubId = 1180335; name = "Kenichi Kamiya"; - keys = [ { fingerprint = "9121 5D87 20CA B405 C63F 24D2 EF6E 574D 040A E2A5"; } ]; + keys = [{fingerprint = "9121 5D87 20CA B405 C63F 24D2 EF6E 574D 040A E2A5";}]; }; kaction = { name = "Dmitry Bogatov"; email = "KAction@disroot.org"; github = "KAction"; githubId = 44864956; - keys = [ { fingerprint = "3F87 0A7C A7B4 3731 2F13 6083 749F D4DF A2E9 4236"; } ]; + keys = [{fingerprint = "3F87 0A7C A7B4 3731 2F13 6083 749F D4DF A2E9 4236";}]; }; kaeeraa = { name = "kaeeraa"; @@ -12997,7 +12997,7 @@ email = "kamadorueda@gmail.com"; github = "kamadorueda"; githubId = 47480384; - keys = [ { fingerprint = "2BE3 BAFD 793E A349 ED1F F00F 04D0 CEAF 916A 9A40"; } ]; + keys = [{fingerprint = "2BE3 BAFD 793E A349 ED1F F00F 04D0 CEAF 916A 9A40";}]; }; kamilchm = { email = "kamil.chm@gmail.com"; @@ -13010,7 +13010,7 @@ email = "me@kamillaova.dev"; github = "Kamillaova"; githubId = 54859825; - keys = [ { fingerprint = "B2D0 AA53 8DBE 60B0 0811 3FC0 2D52 5F67 791E 5834"; } ]; + keys = [{fingerprint = "B2D0 AA53 8DBE 60B0 0811 3FC0 2D52 5F67 791E 5834";}]; }; kampfschlaefer = { email = "arnold@arnoldarts.de"; @@ -13119,7 +13119,7 @@ email = "git@keksgesicht.de"; github = "Keksgesicht"; githubId = 32649612; - keys = [ { fingerprint = "65DF D21C 22A9 E4CD FD1A 0804 C3D7 16E7 29B3 C86A"; } ]; + keys = [{fingerprint = "65DF D21C 22A9 E4CD FD1A 0804 C3D7 16E7 29B3 C86A";}]; }; keldu = { email = "mail@keldu.de"; @@ -13138,7 +13138,7 @@ github = "kennyballou"; githubId = 2186188; name = "Kenny Ballou"; - keys = [ { fingerprint = "932F 3E8E 1C0F 4A98 95D7 B8B8 B0CA A28A 0295 8308"; } ]; + keys = [{fingerprint = "932F 3E8E 1C0F 4A98 95D7 B8B8 B0CA A28A 0295 8308";}]; }; kenran = { email = "johannes.maier@mailbox.org"; @@ -13176,7 +13176,7 @@ github = "kevincox"; githubId = 494012; name = "Kevin Cox"; - keys = [ { fingerprint = "B66B 891D D83B 0E67 7D84 FC30 9BB9 2CC1 552E 99AA"; } ]; + keys = [{fingerprint = "B66B 891D D83B 0E67 7D84 FC30 9BB9 2CC1 552E 99AA";}]; }; kevingriffin = { email = "me@kevin.jp"; @@ -13214,7 +13214,7 @@ github = "kgtkr"; githubId = 17868838; name = "kgtkr"; - keys = [ { fingerprint = "B30D BE93 81E0 3D5D F301 88C8 1F6E B951 9F57 3241"; } ]; + keys = [{fingerprint = "B30D BE93 81E0 3D5D F301 88C8 1F6E B951 9F57 3241";}]; }; khaneliman = { email = "khaneliman12@gmail.com"; @@ -13239,7 +13239,7 @@ github = "khrj"; githubId = 44947946; name = "Khushraj Rathod"; - keys = [ { fingerprint = "1988 3FD8 EA2E B4EC 0A93 1E22 B77B 2A40 E770 2F19"; } ]; + keys = [{fingerprint = "1988 3FD8 EA2E B4EC 0A93 1E22 B77B 2A40 E770 2F19";}]; }; kiara = { name = "kiara"; @@ -13403,7 +13403,7 @@ github = "kittywitch"; githubId = 67870215; name = "Kat Inskip"; - keys = [ { fingerprint = "9CC6 44B5 69CD A59B C874 C4C9 E8DD E3ED 1C90 F3A0"; } ]; + keys = [{fingerprint = "9CC6 44B5 69CD A59B C874 C4C9 E8DD E3ED 1C90 F3A0";}]; }; kivikakk = { email = "ashe@kivikakk.ee"; @@ -13458,7 +13458,7 @@ name = "Fiona Behrens"; github = "kloenk"; githubId = 12898828; - keys = [ { fingerprint = "B44A DFDF F869 A66A 3FDF DD8B 8609 A7B5 19E5 E342"; } ]; + keys = [{fingerprint = "B44A DFDF F869 A66A 3FDF DD8B 8609 A7B5 19E5 E342";}]; }; kmatasfp = { email = "el-development@protonmail.com"; @@ -13801,14 +13801,14 @@ github = "kugland"; githubId = 1173932; name = "André Kugland"; - keys = [ { fingerprint = "6A62 5E60 E3FF FCAE B3AA 50DC 1DA9 3817 80CD D833"; } ]; + keys = [{fingerprint = "6A62 5E60 E3FF FCAE B3AA 50DC 1DA9 3817 80CD D833";}]; }; kuglimon = { name = "Tatu Argillander"; email = "tatu.argillander@kouralabs.com"; github = "kuglimon"; githubId = 629430; - keys = [ { fingerprint = "2843 750C B1AB E256 94BE 40E2 D843 D30B 42CA 0E2D"; } ]; + keys = [{fingerprint = "2843 750C B1AB E256 94BE 40E2 D843 D30B 42CA 0E2D";}]; }; kupac = { github = "Kupac"; @@ -13863,7 +13863,7 @@ matrix = "@kwaa:matrix.org"; github = "kwaa"; githubId = 50108258; - keys = [ { fingerprint = "ABCB A12F 1A8E 3CCC F10B 5109 4444 7777 3333 4444"; } ]; + keys = [{fingerprint = "ABCB A12F 1A8E 3CCC F10B 5109 4444 7777 3333 4444";}]; }; kwohlfahrt = { email = "kai.wohlfahrt@gmail.com"; @@ -13894,7 +13894,7 @@ github = "KyleOndy"; githubId = 1640900; name = "Kyle Ondy"; - keys = [ { fingerprint = "3C79 9D26 057B 64E6 D907 B0AC DB0E 3C33 491F 91C9"; } ]; + keys = [{fingerprint = "3C79 9D26 057B 64E6 D907 B0AC DB0E 3C33 491F 91C9";}]; }; kylerisse = { name = "Kyle Risse"; @@ -13909,14 +13909,14 @@ github = "kylesferrazza"; githubId = 6677292; - keys = [ { fingerprint = "5A9A 1C9B 2369 8049 3B48 CF5B 81A1 5409 4816 2372"; } ]; + keys = [{fingerprint = "5A9A 1C9B 2369 8049 3B48 CF5B 81A1 5409 4816 2372";}]; }; l-as = { email = "las@protonmail.ch"; matrix = "@Las:matrix.org"; github = "L-as"; githubId = 22075344; - keys = [ { fingerprint = "A093 EA17 F450 D4D1 60A0 1194 AC45 8A7D 1087 D025"; } ]; + keys = [{fingerprint = "A093 EA17 F450 D4D1 60A0 1194 AC45 8A7D 1087 D025";}]; name = "Las Safin"; }; l0b0 = { @@ -13967,7 +13967,7 @@ email = "iam@lach.pw"; github = "CertainLach"; githubId = 6235312; - keys = [ { fingerprint = "323C 95B5 DBF7 2D74 8570 C0B7 40B5 D694 8143 175F"; } ]; + keys = [{fingerprint = "323C 95B5 DBF7 2D74 8570 C0B7 40B5 D694 8143 175F";}]; name = "Yaroslav Bolyukin"; }; lachrymal = { @@ -13986,7 +13986,7 @@ email = "joseph@lafreniere.xyz"; github = "lafrenierejm"; githubId = 11155300; - keys = [ { fingerprint = "0375 DD9A EDD1 68A3 ADA3 9EBA EE23 6AA0 141E FCA3"; } ]; + keys = [{fingerprint = "0375 DD9A EDD1 68A3 ADA3 9EBA EE23 6AA0 141E FCA3";}]; name = "Joseph LaFreniere"; }; lagoja = { @@ -14128,7 +14128,7 @@ email = "leana.jiang+git@icloud.com"; github = "leana8959"; githubId = 87855546; - keys = [ { fingerprint = "3659 D5C8 7A4B C5D7 699B 37D8 4E88 7A4C A971 4ADA"; } ]; + keys = [{fingerprint = "3659 D5C8 7A4B C5D7 699B 37D8 4E88 7A4C A971 4ADA";}]; }; lebastr = { email = "lebastr@gmail.com"; @@ -14140,14 +14140,14 @@ name = "Lucius Hu"; github = "lebensterben"; githubId = 1222865; - keys = [ { fingerprint = "80C6 77F2 ED0B E732 3835 A8D3 7E47 4E82 E29B 5A7A"; } ]; + keys = [{fingerprint = "80C6 77F2 ED0B E732 3835 A8D3 7E47 4E82 E29B 5A7A";}]; }; lecoqjacob = { name = "Jacob LeCoq"; email = "lecoqjacob@gmail.com"; githubId = 9278174; github = "bayou-brogrammer"; - keys = [ { fingerprint = "C505 1E8B 06AC 1776 6875 1B60 93AF DAD0 10B3 CB8D"; } ]; + keys = [{fingerprint = "C505 1E8B 06AC 1776 6875 1B60 93AF DAD0 10B3 CB8D";}]; }; ledif = { email = "refuse@gmail.com"; @@ -14177,7 +14177,7 @@ github = "leifhelm"; githubId = 31693262; name = "Jakob Leifhelm"; - keys = [ { fingerprint = "4A82 F68D AC07 9FFD 8BF0 89C4 6817 AA02 3810 0822"; } ]; + keys = [{fingerprint = "4A82 F68D AC07 9FFD 8BF0 89C4 6817 AA02 3810 0822";}]; }; leiserfg = { email = "leiserfg@gmail.com"; @@ -14191,7 +14191,7 @@ github = "Leixb"; githubId = 17183803; name = "Aleix Boné"; - keys = [ { fingerprint = "63D3 F436 EDE8 7E1F 1292 24AF FC03 5BB2 BB28 E15D"; } ]; + keys = [{fingerprint = "63D3 F436 EDE8 7E1F 1292 24AF FC03 5BB2 BB28 E15D";}]; }; lejonet = { email = "daniel@kuehn.se"; @@ -14220,12 +14220,12 @@ lenny = { name = "Lenny."; matrix = "@lenny:flipdot.org"; - keys = [ { fingerprint = "6D63 2D4D 0CFE 8D53 F5FD C7ED 738F C800 6E9E A634"; } ]; + keys = [{fingerprint = "6D63 2D4D 0CFE 8D53 F5FD C7ED 738F C800 6E9E A634";}]; }; leo248 = { github = "leo248"; githubId = 95365184; - keys = [ { fingerprint = "81E3 418D C1A2 9687 2C4D 96DC BB1A 818F F295 26D2"; } ]; + keys = [{fingerprint = "81E3 418D C1A2 9687 2C4D 96DC BB1A 818F F295 26D2";}]; name = "leo248"; }; leo60228 = { @@ -14234,7 +14234,7 @@ github = "leo60228"; githubId = 8355305; name = "leo60228"; - keys = [ { fingerprint = "5BE4 98D5 1C24 2CCD C21A 4604 AC6F 4BA0 78E6 7833"; } ]; + keys = [{fingerprint = "5BE4 98D5 1C24 2CCD C21A 4604 AC6F 4BA0 78E6 7833";}]; }; leona = { email = "nix@leona.is"; @@ -14257,7 +14257,7 @@ leonm1 = { github = "leonm1"; githubId = 32306579; - keys = [ { fingerprint = "C12D F14B DC9D 64E1 44C3 4D8A 755C DA4E 5923 416A"; } ]; + keys = [{fingerprint = "C12D F14B DC9D 64E1 44C3 4D8A 755C DA4E 5923 416A";}]; matrix = "@mattleon:matrix.org"; name = "Matt Leon"; }; @@ -14309,7 +14309,7 @@ email = "lexugeyky@outlook.com"; github = "LEXUGE"; githubId = 13804737; - keys = [ { fingerprint = "7FE2 113A A08B 695A C8B8 DDE6 AE53 B4C2 E58E DD45"; } ]; + keys = [{fingerprint = "7FE2 113A A08B 695A C8B8 DDE6 AE53 B4C2 E58E DD45";}]; }; lf- = { name = "Jade Lovelace"; @@ -14370,7 +14370,7 @@ github = "Liassica"; githubId = 115422798; name = "Liassica"; - keys = [ { fingerprint = "83BE 3033 6164 B971 FA82 7036 0D34 0E59 4980 7BDD"; } ]; + keys = [{fingerprint = "83BE 3033 6164 B971 FA82 7036 0D34 0E59 4980 7BDD";}]; }; liberodark = { email = "liberodark@gmail.com"; @@ -14440,7 +14440,7 @@ email = "olai@olai.dev"; github = "LilleAila"; githubId = 67327023; - keys = [ { fingerprint = "8185 29F9 BB4C 33F0 69BB 9782 D1AC CDCF 2B9B 9799"; } ]; + keys = [{fingerprint = "8185 29F9 BB4C 33F0 69BB 9782 D1AC CDCF 2B9B 9799";}]; }; lillycham = { email = "lillycat332@gmail.com"; @@ -14472,7 +14472,7 @@ matrix = "@me:linj.tech"; github = "jian-lin"; githubId = 75130626; - keys = [ { fingerprint = "80EE AAD8 43F9 3097 24B5 3D7E 27E9 7B91 E63A 7FF8"; } ]; + keys = [{fingerprint = "80EE AAD8 43F9 3097 24B5 3D7E 27E9 7B91 E63A 7FF8";}]; }; link00000000 = { email = "crandall.logan@gmail.com"; @@ -14536,7 +14536,7 @@ github = "livnev"; githubId = 3964494; name = "Lev Livnev"; - keys = [ { fingerprint = "74F5 E5CC 19D3 B5CB 608F 6124 68FF 81E6 A785 0F49"; } ]; + keys = [{fingerprint = "74F5 E5CC 19D3 B5CB 608F 6124 68FF 81E6 A785 0F49";}]; }; liyangau = { email = "d@aufomm.com"; @@ -14579,7 +14579,7 @@ github = "LoCrealloc"; githubId = 64095253; name = "LoC"; - keys = [ { fingerprint = "DCCE F73B 209A 6024 CAE7 F926 5563 EB4A 8634 4F15"; } ]; + keys = [{fingerprint = "DCCE F73B 209A 6024 CAE7 F926 5563 EB4A 8634 4F15";}]; }; locallycompact = { email = "dan.firth@homotopic.tech"; @@ -14593,7 +14593,7 @@ github = "lockejan"; githubId = 25434434; name = "Jan Schmitt"; - keys = [ { fingerprint = "1763 9903 2D7C 5B82 5D5A 0EAD A2BC 3C6F 1435 1991"; } ]; + keys = [{fingerprint = "1763 9903 2D7C 5B82 5D5A 0EAD A2BC 3C6F 1435 1991";}]; }; locochoco = { email = "contact@locochoco.dev"; @@ -14626,7 +14626,7 @@ github = "legendofmiracles"; githubId = 30902201; name = "legendofmiracles"; - keys = [ { fingerprint = "CC50 F82C 985D 2679 0703 AF15 19B0 82B3 DEFE 5451"; } ]; + keys = [{fingerprint = "CC50 F82C 985D 2679 0703 AF15 19B0 82B3 DEFE 5451";}]; }; lonerOrz = { email = "2788892716@qq.com"; @@ -14664,7 +14664,7 @@ matrix = "@lordmzte:mzte.de"; github = "LordMZTE"; githubId = 28735087; - keys = [ { fingerprint = "AB47 3D70 53D2 74CA DC2C 230C B648 02DC 33A6 4FF6"; } ]; + keys = [{fingerprint = "AB47 3D70 53D2 74CA DC2C 230C B648 02DC 33A6 4FF6";}]; }; lorenz = { name = "Lorenz Brun"; @@ -14720,7 +14720,7 @@ github = "lovesegfault"; githubId = 7243783; name = "Bernardo Meurer"; - keys = [ { fingerprint = "F193 7596 57D5 6DA4 CCD4 786B F4C0 D53B 8D14 C246"; } ]; + keys = [{fingerprint = "F193 7596 57D5 6DA4 CCD4 786B F4C0 D53B 8D14 C246";}]; }; lowfatcomputing = { email = "andreas.wagner@lowfatcomputing.org"; @@ -14740,7 +14740,7 @@ github = "loispostula"; githubId = 1423612; name = "Loïs Postula"; - keys = [ { fingerprint = "0B4A E7C7 D3B7 53F5 3B3D 774C 3819 3C6A 09C3 9ED1"; } ]; + keys = [{fingerprint = "0B4A E7C7 D3B7 53F5 3B3D 774C 3819 3C6A 09C3 9ED1";}]; }; lrewega = { email = "lrewega@c32.ca"; @@ -14790,7 +14790,7 @@ githubId = 153414530; matrix = "@ltstf1re:converser.eu"; name = "Little Starfire"; - keys = [ { fingerprint = "FE6C C3C9 2ACF 4367 2B56 5B22 8603 2ACC 051A 873D"; } ]; + keys = [{fingerprint = "FE6C C3C9 2ACF 4367 2B56 5B22 8603 2ACC 051A 873D";}]; }; lu15w1r7h = { email = "lwirth2000@gmail.com"; @@ -14815,7 +14815,7 @@ github = "lucas-deangelis"; githubId = 55180995; name = "Lucas De Angelis"; - keys = [ { fingerprint = "3C8B D3AD 93BB 1F36 B8FF 30BD 8627 E5ED F74B 5BF4"; } ]; + keys = [{fingerprint = "3C8B D3AD 93BB 1F36 B8FF 30BD 8627 E5ED F74B 5BF4";}]; }; lucasbergman = { email = "lucas@bergmans.us"; @@ -14870,7 +14870,7 @@ github = "ludovicopiero"; githubId = 44255157; name = "Ludovico Piero"; - keys = [ { fingerprint = "72CA 4F61 46C6 0DAB 6193 4D35 3911 DD27 6CFE 779C"; } ]; + keys = [{fingerprint = "72CA 4F61 46C6 0DAB 6193 4D35 3911 DD27 6CFE 779C";}]; }; lufia = { email = "lufia@lufia.org"; @@ -14883,7 +14883,7 @@ email = "luflosi@luflosi.de"; github = "Luflosi"; githubId = 15217907; - keys = [ { fingerprint = "66D1 3048 2B5F 2069 81A6 6B83 6F98 7CCF 224D 20B9"; } ]; + keys = [{fingerprint = "66D1 3048 2B5F 2069 81A6 6B83 6F98 7CCF 224D 20B9";}]; }; luftmensch-luftmensch = { email = "valentinobocchetti59@gmail.com"; @@ -14902,7 +14902,7 @@ github = "propet"; githubId = 8515861; name = "Luis D. Aranda Sánchez"; - keys = [ { fingerprint = "AB7C 81F4 9E07 CC64 F3E7 BC25 DCAC C6F4 AAFC C04E"; } ]; + keys = [{fingerprint = "AB7C 81F4 9E07 CC64 F3E7 BC25 DCAC C6F4 AAFC C04E";}]; }; luisnquin = { email = "lpaandres2020@gmail.com"; @@ -14929,7 +14929,7 @@ name = "Luiz Ribeiro"; github = "luizribeiro"; githubId = 112069; - keys = [ { fingerprint = "97A0 AE5E 03F3 499B 7D7A 65C6 76A4 1432 37EF 5817"; } ]; + keys = [{fingerprint = "97A0 AE5E 03F3 499B 7D7A 65C6 76A4 1432 37EF 5817";}]; }; lukas-heiligenbrunner = { email = "lukas.heiligenbrunner@gmail.com"; @@ -15107,7 +15107,7 @@ email = "umutinanerdogan@proton.me"; github = "lzcunt"; githubId = 40492846; - keys = [ { fingerprint = "B766 7717 1644 5ABC DE82 94AA 4679 BF7D CC04 4783"; } ]; + keys = [{fingerprint = "B766 7717 1644 5ABC DE82 94AA 4679 BF7D CC04 4783";}]; matrix = "@sananatheskenana:matrix.org"; name = "sanana the skenana"; }; @@ -15159,7 +15159,7 @@ email = "max@haland.org"; github = "mabster314"; githubId = 5741741; - keys = [ { fingerprint = "71EF 8F1F 0C24 8B4D 5CDC 1B47 74B3 D790 77EE 37A8"; } ]; + keys = [{fingerprint = "71EF 8F1F 0C24 8B4D 5CDC 1B47 74B3 D790 77EE 37A8";}]; }; mac-chaffee = { name = "Mac Chaffee"; @@ -15171,7 +15171,7 @@ name = "Ian Macalinao"; github = "macalinao"; githubId = 401263; - keys = [ { fingerprint = "1147 43F1 E707 6F3E 6F4B 2C96 B9A8 B592 F126 F8E8"; } ]; + keys = [{fingerprint = "1147 43F1 E707 6F3E 6F4B 2C96 B9A8 B592 F126 F8E8";}]; }; macronova = { name = "Sicheng Pan"; @@ -15179,7 +15179,7 @@ matrix = "@macronova:invariantspace.com"; github = "Sicheng-Pan"; githubId = 60079945; - keys = [ { fingerprint = "7590 C9DD E19D 4497 9EE9 0B14 CE96 9670 FB4B 4A56"; } ]; + keys = [{fingerprint = "7590 C9DD E19D 4497 9EE9 0B14 CE96 9670 FB4B 4A56";}]; }; madeddie = { email = "edwin@madtech.cx"; @@ -15212,7 +15212,7 @@ github = "m-rey"; githubId = 42996147; name = "Mæve"; - keys = [ { fingerprint = "96C9 D086 CC9D 7BD7 EF24 80E2 9168 796A 1CC3 AEA2"; } ]; + keys = [{fingerprint = "96C9 D086 CC9D 7BD7 EF24 80E2 9168 796A 1CC3 AEA2";}]; }; maeve-oake = { email = "maeve@oa.ke"; @@ -15245,8 +15245,8 @@ github = "magistau"; githubId = 43097806; keys = [ - { fingerprint = "C7EA B182 2AB1 246C 0FB8 DD72 0514 0B67 902C D3AF"; } - { fingerprint = "DA77 EDDB 4AF5 244C 665E 9176 A05E A86A 5834 1AA8"; } + {fingerprint = "C7EA B182 2AB1 246C 0FB8 DD72 0514 0B67 902C D3AF";} + {fingerprint = "DA77 EDDB 4AF5 244C 665E 9176 A05E A86A 5834 1AA8";} ]; }; magneticflux- = { @@ -15254,7 +15254,7 @@ github = "magneticflux-"; githubId = 9124288; name = "Mitchell Skaggs"; - keys = [ { fingerprint = "CA2A 3324 43A7 BD99 8FCE DFC4 4EB0 FECB 84AE 8967"; } ]; + keys = [{fingerprint = "CA2A 3324 43A7 BD99 8FCE DFC4 4EB0 FECB 84AE 8967";}]; }; magnetophon = { email = "bart@magnetophon.nl"; @@ -15303,7 +15303,7 @@ githubId = 19927330; name = "Maiko Tan"; keys = [ - { fingerprint = "9C68 989F ECF9 8993 3225 96DD 970A 6794 990C 52AE"; } + {fingerprint = "9C68 989F ECF9 8993 3225 96DD 970A 6794 990C 52AE";} ]; }; majesticmullet = { @@ -15340,7 +15340,7 @@ github = "makuru-org"; githubId = 58048293; name = "Makuru"; - keys = [ { fingerprint = "5B22 7123 362F DEF1 8F79 BF2B 4792 3A0F EEB5 51C7"; } ]; + keys = [{fingerprint = "5B22 7123 362F DEF1 8F79 BF2B 4792 3A0F EEB5 51C7";}]; }; malbarbo = { email = "malbarbo@gmail.com"; @@ -15353,7 +15353,7 @@ email = "abdelmalik.najhi@stud.hs-kempten.de"; github = "malikwirin"; githubId = 117918464; - keys = [ { fingerprint = "B5ED 595C 8C7E 133C 6B68 63C8 CFEF 1E35 0351 F72D"; } ]; + keys = [{fingerprint = "B5ED 595C 8C7E 133C 6B68 63C8 CFEF 1E35 0351 F72D";}]; }; malo = { email = "mbourgon@gmail.com"; @@ -15400,7 +15400,7 @@ email = "me@mange.dev"; github = "Mange"; githubId = 1599; - keys = [ { fingerprint = "2EA6 F4AA 110A 1BF2 2275 19A9 0443 C69F 6F02 2CDE"; } ]; + keys = [{fingerprint = "2EA6 F4AA 110A 1BF2 2275 19A9 0443 C69F 6F02 2CDE";}]; }; mangoiv = { email = "contact@mangoiv.com"; @@ -15469,7 +15469,7 @@ github = "marcin-serwin"; githubId = 12128106; email = "marcin@serwin.dev"; - keys = [ { fingerprint = "F311 FA15 1A66 1875 0C4D A88D 82F5 C70C DC49 FD1D"; } ]; + keys = [{fingerprint = "F311 FA15 1A66 1875 0C4D A88D 82F5 C70C DC49 FD1D";}]; }; marcovergueira = { email = "vergueira.marco@gmail.com"; @@ -15614,7 +15614,7 @@ github = "marzipankaiser"; githubId = 2551444; name = "Marcial Gaißert"; - keys = [ { fingerprint = "B573 5118 0375 A872 FBBF 7770 B629 036B E399 EEE9"; } ]; + keys = [{fingerprint = "B573 5118 0375 A872 FBBF 7770 B629 036B E399 EEE9";}]; }; masaeedu = { email = "masaeedu@gmail.com"; @@ -15817,7 +15817,7 @@ name = "Matthieu Barthel"; github = "MatthieuBarthel"; githubId = 435534; - keys = [ { fingerprint = "80EB 0F2B 484A BB80 7BEF 4145 BA23 F10E AADC 2E26"; } ]; + keys = [{fingerprint = "80EB 0F2B 484A BB80 7BEF 4145 BA23 F10E AADC 2E26";}]; }; matthuszagh = { email = "huszaghmatt@gmail.com"; @@ -15849,7 +15849,7 @@ githubId = 5046562; matrix = "@mattsturg:matrix.org"; name = "Matt Sturgeon"; - keys = [ { fingerprint = "7082 22EA 1808 E39A 83AC 8B18 4F91 844C ED1A 8299"; } ]; + keys = [{fingerprint = "7082 22EA 1808 E39A 83AC 8B18 4F91 844C ED1A 8299";}]; }; matusf = { email = "matus.ferech@gmail.com"; @@ -15874,7 +15874,7 @@ github = "mawis"; githubId = 2042030; name = "Matthias Wimmer"; - keys = [ { fingerprint = "CAEC A12D CE23 37A6 6DFD 17B0 7AC7 631D 70D6 C898"; } ]; + keys = [{fingerprint = "CAEC A12D CE23 37A6 6DFD 17B0 7AC7 631D 70D6 C898";}]; }; max = { email = "max+nixpkgs@privatevoid.net"; @@ -15894,7 +15894,7 @@ github = "max-niederman"; githubId = 19580458; name = "Max Niederman"; - keys = [ { fingerprint = "1DE4 424D BF77 1192 5DC4 CF5E 9AED 8814 81D8 444E"; } ]; + keys = [{fingerprint = "1DE4 424D BF77 1192 5DC4 CF5E 9AED 8814 81D8 444E";}]; }; max06 = { email = "max06.net@outlook.com"; @@ -15907,7 +15907,7 @@ github = "maxbrunet"; githubId = 32458727; name = "Maxime Brunet"; - keys = [ { fingerprint = "E9A2 EE26 EAC6 B3ED 6C10 61F3 4379 62FF 87EC FE2B"; } ]; + keys = [{fingerprint = "E9A2 EE26 EAC6 B3ED 6C10 61F3 4379 62FF 87EC FE2B";}]; }; maxdamantus = { email = "maxdamantus@gmail.com"; @@ -16045,7 +16045,7 @@ github = "mccurdyc"; githubId = 5546264; name = "Colton J. McCurdy"; - keys = [ { fingerprint = "D709 03C8 0BE9 ACDC 14F0 3BFB 77BF E531 397E DE94"; } ]; + keys = [{fingerprint = "D709 03C8 0BE9 ACDC 14F0 3BFB 77BF E531 397E DE94";}]; }; mcmtroffaes = { email = "matthias.troffaes@gmail.com"; @@ -16058,7 +16058,7 @@ github = "mcpar-land"; githubId = 55669980; name = "John McParland"; - keys = [ { fingerprint = "39D2 171D D733 C718 DD21 285E B326 E14B 05D8 7A4E"; } ]; + keys = [{fingerprint = "39D2 171D D733 C718 DD21 285E B326 E14B 05D8 7A4E";}]; }; MCSeekeri = { email = "mcseekeri@outlook.com"; @@ -16066,8 +16066,8 @@ githubId = 20928094; name = "MCSeekeri"; keys = [ - { fingerprint = "5922 79AB D9D6 85EB 9D16 754C ECDC AD89 5A38 4A12"; } - { fingerprint = "0762 A387 F160 76F1 116C BF13 3276 6666 6666 6666"; } + {fingerprint = "5922 79AB D9D6 85EB 9D16 754C ECDC AD89 5A38 4A12";} + {fingerprint = "0762 A387 F160 76F1 116C BF13 3276 6666 6666 6666";} ]; }; McSinyx = { @@ -16077,8 +16077,8 @@ matrix = "@cnx:loang.net"; name = "Nguyễn Gia Phong"; keys = [ - { fingerprint = "E90E 11B8 0493 343B 6132 E394 2714 8B2C 06A2 224B"; } - { fingerprint = "838A FE0D 55DC 074E 360F 943A 84B6 9CE6 F3F6 B767"; } + {fingerprint = "E90E 11B8 0493 343B 6132 E394 2714 8B2C 06A2 224B";} + {fingerprint = "838A FE0D 55DC 074E 360F 943A 84B6 9CE6 F3F6 B767";} ]; }; mcwitt = { @@ -16116,7 +16116,7 @@ github = "mdlayher"; githubId = 1926905; name = "Matt Layher"; - keys = [ { fingerprint = "D709 03C8 0BE9 ACDC 14F0 3BFB 77BF E531 397E DE94"; } ]; + keys = [{fingerprint = "D709 03C8 0BE9 ACDC 14F0 3BFB 77BF E531 397E DE94";}]; }; mdorman = { email = "mdorman@jaunder.io"; @@ -16154,7 +16154,7 @@ github = "meator"; githubId = 67633081; name = "meator"; - keys = [ { fingerprint = "7B0F 58A5 E0F1 A2EA 1157 8A73 1A14 CB34 64CB E5BF"; } ]; + keys = [{fingerprint = "7B0F 58A5 E0F1 A2EA 1157 8A73 1A14 CB34 64CB E5BF";}]; }; meditans = { email = "meditans@gmail.com"; @@ -16192,7 +16192,7 @@ githubId = 10659529; matrix = "@mel:rnrd.eu"; name = "Mel G."; - keys = [ { fingerprint = "D75A C286 ACA7 00B4 D8EC 377D 2082 F8EC 11CC 009B"; } ]; + keys = [{fingerprint = "D75A C286 ACA7 00B4 D8EC 377D 2082 F8EC 11CC 009B";}]; }; melchips = { email = "truphemus.francois@gmail.com"; @@ -16235,7 +16235,7 @@ github = "melvyn2"; githubId = 9157412; name = "melvyn"; - keys = [ { fingerprint = "232B 9F00 2153 CA86 849C 9224 25A2 B728 0CE3 AFF6"; } ]; + keys = [{fingerprint = "232B 9F00 2153 CA86 849C 9224 25A2 B728 0CE3 AFF6";}]; }; mephistophiles = { email = "mussitantesmortem@gmail.com"; @@ -16331,14 +16331,14 @@ github = "mhemeryck"; githubId = 5445250; name = "Martijn Hemeryck"; - keys = [ { fingerprint = "1B47 7ADA 04B4 7A5C E61A EDE0 1AA3 6833 BC86 F0F1"; } ]; + keys = [{fingerprint = "1B47 7ADA 04B4 7A5C E61A EDE0 1AA3 6833 BC86 F0F1";}]; }; mhutter = { email = "manuel@hutter.io"; github = "mhutter"; githubId = 346819; name = "Manuel Hutter"; - keys = [ { fingerprint = "BE27 20A9 0C16 C351 31E0 B2FB FC31 B4E5 4C4C F892"; } ]; + keys = [{fingerprint = "BE27 20A9 0C16 C351 31E0 B2FB FC31 B4E5 4C4C F892";}]; }; mi-ael = { email = "miael.oss.1970@gmail.com"; @@ -16351,13 +16351,13 @@ github = "miampf"; githubId = 111570799; name = "Mia Motte Mallon"; - keys = [ { fingerprint = "7008 92AA 6F32 8CAC 8740 0070 EF03 9364 B5B6 886C"; } ]; + keys = [{fingerprint = "7008 92AA 6F32 8CAC 8740 0070 EF03 9364 B5B6 886C";}]; }; miangraham = { github = "miangraham"; githubId = 704580; name = "M. Ian Graham"; - keys = [ { fingerprint = "8CE3 2906 516F C4D8 D373 308A E189 648A 55F5 9A9F"; } ]; + keys = [{fingerprint = "8CE3 2906 516F C4D8 D373 308A E189 648A 55F5 9A9F";}]; }; mib = { name = "mib"; @@ -16365,7 +16365,7 @@ matrix = "@mib:kanp.ai"; github = "mibmo"; githubId = 87388017; - keys = [ { fingerprint = "AB0D C647 B2F7 86EB 045C 7EFE CF6E 67DE D6DC 1E3F"; } ]; + keys = [{fingerprint = "AB0D C647 B2F7 86EB 045C 7EFE CF6E 67DE D6DC 1E3F";}]; }; mic92 = { email = "joerg@thalheim.io"; @@ -16415,7 +16415,7 @@ name = "Michael Glass"; github = "michaelglass"; githubId = 60136; - keys = [ { fingerprint = "46AF 8625 D92A 219B 8E6D B7F8 9CDD 3769 1649 1385"; } ]; + keys = [{fingerprint = "46AF 8625 D92A 219B 8E6D B7F8 9CDD 3769 1649 1385";}]; }; michaelgrahamevans = { email = "michaelgrahamevans@gmail.com"; @@ -16428,7 +16428,7 @@ name = "Michael Pacheco"; github = "MichaelPachec0"; githubId = 48970112; - keys = [ { fingerprint = "8D12 991F 5558 C501 70B2 779C 7811 46B0 B5F9 5F64"; } ]; + keys = [{fingerprint = "8D12 991F 5558 C501 70B2 779C 7811 46B0 B5F9 5F64";}]; }; michaelpj = { email = "me@michaelpj.com"; @@ -16484,7 +16484,7 @@ github = "midchildan"; githubId = 7343721; name = "midchildan"; - keys = [ { fingerprint = "FEF0 AE2D 5449 3482 5F06 40AA 186A 1EDA C5C6 3F83"; } ]; + keys = [{fingerprint = "FEF0 AE2D 5449 3482 5F06 40AA 186A 1EDA C5C6 3F83";}]; }; midischwarz12 = { email = "midischwarz@proton.me"; @@ -16557,14 +16557,14 @@ github = "mikroskeem"; githubId = 3490861; name = "Mark Vainomaa"; - keys = [ { fingerprint = "DB43 2895 CF68 F0CE D4B7 EF60 DA01 5B05 B5A1 1B22"; } ]; + keys = [{fingerprint = "DB43 2895 CF68 F0CE D4B7 EF60 DA01 5B05 B5A1 1B22";}]; }; mikut = { email = "mikut@mikut.dev"; github = "Mikutut"; githubId = 65046942; name = "Marcin Mikuła"; - keys = [ { fingerprint = "5547 2A56 AC30 69C9 15C8 B98D 997F 71FA 1D74 6E37"; } ]; + keys = [{fingerprint = "5547 2A56 AC30 69C9 15C8 B98D 997F 71FA 1D74 6E37";}]; }; milesbreslin = { email = "milesbreslin@gmail.com"; @@ -16631,7 +16631,7 @@ github = "minijackson"; githubId = 1200507; name = "Rémi Nicole"; - keys = [ { fingerprint = "3196 83D3 9A1B 4DE1 3DC2 51FD FEA8 88C9 F5D6 4F62"; } ]; + keys = [{fingerprint = "3196 83D3 9A1B 4DE1 3DC2 51FD FEA8 88C9 F5D6 4F62";}]; }; minion3665 = { name = "Skyler Grey"; @@ -16639,7 +16639,7 @@ matrix = "@minion3665:matrix.org"; github = "Minion3665"; githubId = 34243578; - keys = [ { fingerprint = "D520 AC8D 7C96 9212 5B2B BD3A 1AFD 1025 6B3C 714D"; } ]; + keys = [{fingerprint = "D520 AC8D 7C96 9212 5B2B BD3A 1AFD 1025 6B3C 714D";}]; }; minizilla = { email = "m.billyzaelani@gmail.com"; @@ -16677,7 +16677,7 @@ github = "mirrorwitch"; githubId = 146672255; name = "mirrorwitch"; - keys = [ { fingerprint = "C3E7 F8C4 9CBC 9320 D360 B117 8516 D0FA 7D8F 58FC"; } ]; + keys = [{fingerprint = "C3E7 F8C4 9CBC 9320 D360 B117 8516 D0FA 7D8F 58FC";}]; }; Misaka13514 = { name = "Misaka13514"; @@ -16685,7 +16685,7 @@ matrix = "@misaka13514:matrix.org"; github = "Misaka13514"; githubId = 54669781; - keys = [ { fingerprint = "293B 93D8 A471 059F 85D7 16A6 5BA9 2099 D9BE 2DAA"; } ]; + keys = [{fingerprint = "293B 93D8 A471 059F 85D7 16A6 5BA9 2099 D9BE 2DAA";}]; }; misilelab = { name = "misilelab"; @@ -16705,7 +16705,7 @@ githubId = 5727578; matrix = "@misterio:matrix.org"; name = "Gabriel Fontes"; - keys = [ { fingerprint = "7088 C742 1873 E0DB 97FF 17C2 245C AB70 B4C2 25E9"; } ]; + keys = [{fingerprint = "7088 C742 1873 E0DB 97FF 17C2 245C AB70 B4C2 25E9";}]; }; mistydemeo = { email = "misty@axo.dev"; @@ -16767,7 +16767,7 @@ github = "mkf"; githubId = 7753506; name = "Michał Krzysztof Feiler"; - keys = [ { fingerprint = "1E36 9940 CC7E 01C4 CFE8 F20A E35C 2D7C 2C6A C724"; } ]; + keys = [{fingerprint = "1E36 9940 CC7E 01C4 CFE8 F20A E35C 2D7C 2C6A C724";}]; }; mkg = { email = "mkg@vt.edu"; @@ -16781,7 +16781,7 @@ github = "mkg20001"; githubId = 7735145; name = "Maciej Krüger"; - keys = [ { fingerprint = "E90C BA34 55B3 6236 740C 038F 0D94 8CE1 9CF4 9C5F"; } ]; + keys = [{fingerprint = "E90C BA34 55B3 6236 740C 038F 0D94 8CE1 9CF4 9C5F";}]; }; mksafavi = { name = "MK Safavi"; @@ -16794,7 +16794,7 @@ github = "mktip"; githubId = 45905717; name = "Mohammad Issa"; - keys = [ { fingerprint = "64BE BF11 96C3 DD7A 443E 8314 1DC0 82FA DE5B A863"; } ]; + keys = [{fingerprint = "64BE BF11 96C3 DD7A 443E 8314 1DC0 82FA DE5B A863";}]; }; mlaradji = { name = "Mohamed Laradji"; @@ -16901,7 +16901,7 @@ email = "me@momee.mt"; github = "momeemt"; githubId = 43488453; - keys = [ { fingerprint = "D94F EA9F 5B08 F6A1 7B8F EB8B ACB5 4F0C BC6A A7C6"; } ]; + keys = [{fingerprint = "D94F EA9F 5B08 F6A1 7B8F EB8B ACB5 4F0C BC6A A7C6";}]; }; monaaraj = { name = "Mon Aaraj"; @@ -16939,7 +16939,7 @@ email = "chris@cdom.io"; github = "montchr"; githubId = 1757914; - keys = [ { fingerprint = "6460 4147 C434 F65E C306 A21F 135E EDD0 F719 34F3"; } ]; + keys = [{fingerprint = "6460 4147 C434 F65E C306 A21F 135E EDD0 F719 34F3";}]; }; moody = { email = "moody@posixcafe.org"; @@ -16959,14 +16959,14 @@ matrix = "@moraxyc:qaq.li"; github = "Moraxyc"; githubId = 69713071; - keys = [ { fingerprint = "7DD1 A4DF 7DD6 AEEB F07B 1108 8296 4F3A B1D9 DE79"; } ]; + keys = [{fingerprint = "7DD1 A4DF 7DD6 AEEB F07B 1108 8296 4F3A B1D9 DE79";}]; }; moredread = { email = "code@apb.name"; github = "Moredread"; githubId = 100848; name = "André-Patrick Bubel"; - keys = [ { fingerprint = "4412 38AD CAD3 228D 876C 5455 118C E7C4 24B4 5728"; } ]; + keys = [{fingerprint = "4412 38AD CAD3 228D 876C 5455 118C E7C4 24B4 5728";}]; }; moretea = { email = "maarten@moretea.nl"; @@ -17014,7 +17014,7 @@ email = "motiejus@jakstys.lt"; github = "motiejus"; githubId = 107720; - keys = [ { fingerprint = "5F6B 7A8A 92A2 60A4 3704 9BEB 6F13 3A0C 1C28 48D7"; } ]; + keys = [{fingerprint = "5F6B 7A8A 92A2 60A4 3704 9BEB 6F13 3A0C 1C28 48D7";}]; matrix = "@motiejus:jakstys.lt"; name = "Motiejus Jakštys"; }; @@ -17067,7 +17067,7 @@ matrix = "@mrdev023:matrix.org"; github = "mrdev023"; githubId = 11292703; - keys = [ { fingerprint = "B19E 3F4A 2D80 6AB4 793F DF2F C73D 37CB ED7B FC77"; } ]; + keys = [{fingerprint = "B19E 3F4A 2D80 6AB4 793F DF2F C73D 37CB ED7B FC77";}]; }; mredaelli = { email = "massimo@typish.io"; @@ -17128,7 +17128,7 @@ name = "Egor Martynov"; github = "mrtnvgr"; githubId = 48406064; - keys = [ { fingerprint = "6FAD DB43 D5A5 FE52 6835 0943 5B33 79E9 81EF 48B1"; } ]; + keys = [{fingerprint = "6FAD DB43 D5A5 FE52 6835 0943 5B33 79E9 81EF 48B1";}]; }; mrVanDalo = { email = "contact@ingolf-wagner.de"; @@ -17142,7 +17142,7 @@ name = "Moritz Sanft"; github = "msanft"; githubId = 58110325; - keys = [ { fingerprint = "3CAC 1D21 3D97 88FF 149A E116 BB8B 30F5 A024 C31C"; } ]; + keys = [{fingerprint = "3CAC 1D21 3D97 88FF 149A E116 BB8B 30F5 A024 C31C";}]; }; mschristiansen = { email = "mikkel@rheosystems.com"; @@ -17173,7 +17173,7 @@ github = "msgilligan"; githubId = 61612; name = "Sean Gilligan"; - keys = [ { fingerprint = "3B66 ACFA D10F 02AA B1D5  2CB1 8DD0 D81D 7D1F C61A"; } ]; + keys = [{fingerprint = "3B66 ACFA D10F 02AA B1D5  2CB1 8DD0 D81D 7D1F C61A";}]; }; msiedlarek = { email = "mikolaj@siedlarek.pl"; @@ -17252,7 +17252,7 @@ email = "mtpham.nixos@protonmail.com"; github = "mtpham99"; githubId = 72663763; - keys = [ { fingerprint = "DB3E A12D B291 594A 79C5 F6B3 10AB 6868 37F6 FA3F"; } ]; + keys = [{fingerprint = "DB3E A12D B291 594A 79C5 F6B3 10AB 6868 37F6 FA3F";}]; }; mtreskin = { email = "zerthurd@gmail.com"; @@ -17308,7 +17308,7 @@ github = "muni-corn"; githubId = 33523827; matrix = "@municorn:matrix.org"; - keys = [ { fingerprint = "2686 7D83 CD74 CCEF 192F 052E 4B21 310A 52B1 5162"; } ]; + keys = [{fingerprint = "2686 7D83 CD74 CCEF 192F 052E 4B21 310A 52B1 5162";}]; }; munksgaard = { name = "Philip Munksgaard"; @@ -17316,7 +17316,7 @@ github = "Munksgaard"; githubId = 230613; matrix = "@philip:matrix.munksgaard.me"; - keys = [ { fingerprint = "5658 4D09 71AF E45F CC29 6BD7 4CE6 2A90 EFC0 B9B2"; } ]; + keys = [{fingerprint = "5658 4D09 71AF E45F CC29 6BD7 4CE6 2A90 EFC0 B9B2";}]; }; mupdt = { email = "nix@pdtpartners.com"; @@ -17341,7 +17341,7 @@ matrix = "@maxime:visonneau.fr"; github = "mvisonneau"; githubId = 1761583; - keys = [ { fingerprint = "EC63 0CEA E8BC 5EE5 5C58 F2E3 150D 6F0A E919 8D24"; } ]; + keys = [{fingerprint = "EC63 0CEA E8BC 5EE5 5C58 F2E3 150D 6F0A E919 8D24";}]; }; mvnetbiz = { email = "mvnetbiz@gmail.com"; @@ -17396,7 +17396,7 @@ email = "mymindstorm@evermiss.net"; github = "mymindstorm"; githubId = 27789806; - keys = [ { fingerprint = "52B9 A09F 788F 4D1F 0C94 9EBE EE39 A9F3 0C9D 72B5"; } ]; + keys = [{fingerprint = "52B9 A09F 788F 4D1F 0C94 9EBE EE39 A9F3 0C9D 72B5";}]; }; mynacol = { github = "Mynacol"; @@ -17439,7 +17439,7 @@ github = "n-hass"; githubId = 72363381; name = "n-hass"; - keys = [ { fingerprint = "FDEE 6116 DBA7 8840 7323 4466 A371 5973 2728 A6A6"; } ]; + keys = [{fingerprint = "FDEE 6116 DBA7 8840 7323 4466 A371 5973 2728 A6A6";}]; }; n00b0ss = { email = "nixpkgs@n00b0ss.de"; @@ -17459,14 +17459,14 @@ github = "n3oney"; githubId = 30625554; matrix = "@neoney:matrix.org"; - keys = [ { fingerprint = "9E6A 25F2 C1F2 9D76 ED00 1932 1261 173A 01E1 0298"; } ]; + keys = [{fingerprint = "9E6A 25F2 C1F2 9D76 ED00 1932 1261 173A 01E1 0298";}]; }; n8henrie = { name = "Nathan Henrie"; email = "nate@n8henrie.com"; github = "n8henrie"; githubId = 1234956; - "keys" = [ { "fingerprint" = "F21A 6194 C9DB 9899 CD09 E24E 434B 2C14 B8C3 3422"; } ]; + "keys" = [{"fingerprint" = "F21A 6194 C9DB 9899 CD09 E24E 434B 2C14 B8C3 3422";}]; }; nadiaholmquist = { name = "Nadia Holmquist Pedersen"; @@ -17509,7 +17509,7 @@ github = "nagy"; githubId = 692274; name = "Daniel Nagy"; - keys = [ { fingerprint = "F6AE 2C60 9196 A1BC ECD8 7108 1B8E 8DCB 576F B671"; } ]; + keys = [{fingerprint = "F6AE 2C60 9196 A1BC ECD8 7108 1B8E 8DCB 576F B671";}]; }; nagymathev = { name = "Viktor Nagymathe"; @@ -17521,7 +17521,7 @@ github = "trueNAHO"; githubId = 90870942; name = "Noah Pierre Biewesch"; - keys = [ { fingerprint = "5FC6 088A FB1A 609D 4532 F919 0C1C 177B 3B64 68E0"; } ]; + keys = [{fingerprint = "5FC6 088A FB1A 609D 4532 F919 0C1C 177B 3B64 68E0";}]; }; nalbyuites = { email = "ashijit007@gmail.com"; @@ -17557,7 +17557,7 @@ email = "hanakretzer@gmail.com"; github = "nanoyaki"; githubId = 144328493; - keys = [ { fingerprint = "D89F 440C 6CD7 4753 090F EC7A 4682 C5CB 4D9D EA3C"; } ]; + keys = [{fingerprint = "D89F 440C 6CD7 4753 090F EC7A 4682 C5CB 4D9D EA3C";}]; }; naora = { name = "Joris Gundermann"; @@ -17586,7 +17586,7 @@ github = "nasirhm"; githubId = 35005234; name = "Nasir Hussain"; - keys = [ { fingerprint = "7A10 AB8E 0BEC 566B 090C 9BE3 D812 6E55 9CE7 C35D"; } ]; + keys = [{fingerprint = "7A10 AB8E 0BEC 566B 090C 9BE3 D812 6E55 9CE7 C35D";}]; }; nat-418 = { github = "nat-418"; @@ -17634,14 +17634,14 @@ matrix = "@nki:m.nkagami.me"; github = "natsukagami"; githubId = 9061737; - keys = [ { fingerprint = "5581 26DC 886F E14D 501D B0F2 D6AD 7B57 A992 460C"; } ]; + keys = [{fingerprint = "5581 26DC 886F E14D 501D B0F2 D6AD 7B57 A992 460C";}]; }; natsukium = { email = "nixpkgs@natsukium.com"; github = "natsukium"; githubId = 25083790; name = "Tomoya Otabi"; - keys = [ { fingerprint = "3D14 6004 004C F882 D519 6CD4 9EA4 5A31 DB99 4C53"; } ]; + keys = [{fingerprint = "3D14 6004 004C F882 D519 6CD4 9EA4 5A31 DB99 4C53";}]; }; natto1784 = { email = "natto@weirdnatto.in"; @@ -17654,7 +17654,7 @@ github = "naufik"; githubId = 8577904; name = "Naufal Fikri"; - keys = [ { fingerprint = "1575 D651 E31EC 6117A CF0AA C1A3B 8BBC A515 8835"; } ]; + keys = [{fingerprint = "1575 D651 E31EC 6117A CF0AA C1A3B 8BBC A515 8835";}]; }; naxdy = { name = "Naxdy"; @@ -17662,7 +17662,7 @@ matrix = "@naxdy:naxdy.org"; github = "Naxdy"; githubId = 4532582; - keys = [ { fingerprint = "BDEA AB07 909D B96F 4106 85F1 CC15 0758 46BC E91B"; } ]; + keys = [{fingerprint = "BDEA AB07 909D B96F 4106 85F1 CC15 0758 46BC E91B";}]; }; nazarewk = { name = "Krzysztof Nazarewski"; @@ -17670,7 +17670,7 @@ matrix = "@nazarewk:matrix.org"; github = "nazarewk"; githubId = 3494992; - keys = [ { fingerprint = "4BFF 0614 03A2 47F0 AA0B 4BC4 916D 8B67 2418 92AE"; } ]; + keys = [{fingerprint = "4BFF 0614 03A2 47F0 AA0B 4BC4 916D 8B67 2418 92AE";}]; }; nbr = { github = "nbr"; @@ -17696,7 +17696,7 @@ github = "ncfavier"; githubId = 4323933; name = "Naïm Favier"; - keys = [ { fingerprint = "F3EB 4BBB 4E71 99BC 299C D4E9 95AF CE82 1190 8325"; } ]; + keys = [{fingerprint = "F3EB 4BBB 4E71 99BC 299C D4E9 95AF CE82 1190 8325";}]; }; nckx = { email = "github@tobias.gr"; @@ -17831,7 +17831,7 @@ email = "me@netali.de"; github = "NetaliDev"; githubId = 15304894; - keys = [ { fingerprint = "F729 2594 6F58 0B05 8FB3 F271 9C55 E636 426B 40A9"; } ]; + keys = [{fingerprint = "F729 2594 6F58 0B05 8FB3 F271 9C55 E636 426B 40A9";}]; }; netcrns = { email = "jason.wing@gmx.de"; @@ -17845,7 +17845,7 @@ matrix = "@netfox:catgirl.cloud"; github = "0xnetfox"; githubId = 97521402; - keys = [ { fingerprint = "E8E9 43D7 EB83 DB77 E41C D87F 9C77 CB70 F2E6 3EF7"; } ]; + keys = [{fingerprint = "E8E9 43D7 EB83 DB77 E41C D87F 9C77 CB70 F2E6 3EF7";}]; }; netixx = { email = "dev.espinetfrancois@gmail.com"; @@ -17865,7 +17865,7 @@ matrix = "@networkexception:nwex.de"; github = "networkException"; githubId = 42888162; - keys = [ { fingerprint = "A0B9 48C5 A263 55C2 035F 8567 FBB7 2A94 52D9 1A72"; } ]; + keys = [{fingerprint = "A0B9 48C5 A263 55C2 035F 8567 FBB7 2A94 52D9 1A72";}]; }; neverbehave = { email = "i@never.pet"; @@ -17933,7 +17933,7 @@ github = "nicbk"; githubId = 77309427; name = "Nicolás Kennedy"; - keys = [ { fingerprint = "7BC1 77D9 C222 B1DC FB2F 0484 C061 089E FEBF 7A35"; } ]; + keys = [{fingerprint = "7BC1 77D9 C222 B1DC FB2F 0484 C061 089E FEBF 7A35";}]; }; nicegamer7 = { name = "Kermina Awad"; @@ -17981,7 +17981,7 @@ github = "nicolas-goudry"; githubId = 8753998; name = "Nicolas Goudry"; - keys = [ { fingerprint = "21B6 A59A 4E89 0B1B 83E3 0CDB 01C8 8C03 5450 9AA9"; } ]; + keys = [{fingerprint = "21B6 A59A 4E89 0B1B 83E3 0CDB 01C8 8C03 5450 9AA9";}]; }; nicomem = { email = "nix@nicomem.com"; @@ -17994,7 +17994,7 @@ github = "nicoonoclaste"; githubId = 1155801; name = "nicoo"; - keys = [ { fingerprint = "E44E 9EA5 4B8E 256A FB73 49D3 EC9D 3708 72BC 7A8C"; } ]; + keys = [{fingerprint = "E44E 9EA5 4B8E 256A FB73 49D3 EC9D 3708 72BC 7A8C";}]; }; nidabdella = { name = "Mohamed Nidabdella"; @@ -18007,7 +18007,7 @@ github = "meithecatte"; githubId = 23580910; name = "Jakub Kądziołka"; - keys = [ { fingerprint = "E576 BFB2 CF6E B13D F571 33B9 E315 A758 4613 1564"; } ]; + keys = [{fingerprint = "E576 BFB2 CF6E B13D F571 33B9 E315 A758 4613 1564";}]; }; nielsegberts = { email = "nix@nielsegberts.nl"; @@ -18031,7 +18031,7 @@ email = "niklas.2.halonen@aalto.fi"; github = "xhalo32"; githubId = 15152190; - keys = [ { fingerprint = "AF3B 80CD A027 245B 51FC 6D9B E83A 373D A5AF 5068"; } ]; + keys = [{fingerprint = "AF3B 80CD A027 245B 51FC 6D9B E83A 373D A5AF 5068";}]; name = "Niklas Halonen"; }; niklaskorz = { @@ -18052,7 +18052,7 @@ email = "mail@nikolaiser.com"; githubId = 5569482; github = "nikolaiser"; - keys = [ { fingerprint = "FF23 8141 F4E9 1896 6162 F0CD 980B 9E9C 5686 F13A"; } ]; + keys = [{fingerprint = "FF23 8141 F4E9 1896 6162 F0CD 980B 9E9C 5686 F13A";}]; }; nikolaizombie1 = { name = "Fabio J. Matos Nieves"; @@ -18102,7 +18102,7 @@ github = "nim65s"; githubId = 131929; name = "Guilhem Saurel"; - keys = [ { fingerprint = "9B1A 7906 5D2F 2B80 6C8A 5A1C 7D2A CDAF 4653 CF28"; } ]; + keys = [{fingerprint = "9B1A 7906 5D2F 2B80 6C8A 5A1C 7D2A CDAF 4653 CF28";}]; }; nindouja = { email = "nindouja@proton.me"; @@ -18172,7 +18172,7 @@ github = "nixbitcoin"; githubId = 45737139; name = "nixbitcoindev"; - keys = [ { fingerprint = "577A 3452 7F3E 2A85 E80F E164 DD11 F9AD 5308 B3BA"; } ]; + keys = [{fingerprint = "577A 3452 7F3E 2A85 E80F E164 DD11 F9AD 5308 B3BA";}]; }; nixinator = { email = "33lockdown33@protonmail.com"; @@ -18198,7 +18198,7 @@ email = "n@nk.je"; github = "NKJe"; githubId = 1102306; - keys = [ { fingerprint = "B956 C6A4 22AF 86A0 8F77 A8CA DE3B ADFE CD31 A89D"; } ]; + keys = [{fingerprint = "B956 C6A4 22AF 86A0 8F77 A8CA DE3B ADFE CD31 A89D";}]; }; nkpvk = { email = "niko.pavlinek@gmail.com"; @@ -18257,7 +18257,7 @@ github = "noiioiu"; githubId = 151288161; name = "noiioiu"; - keys = [ { fingerprint = "99CC 06D6 1456 3689 CE75 58F3 BF51 F00D 0748 2A89"; } ]; + keys = [{fingerprint = "99CC 06D6 1456 3689 CE75 58F3 BF51 F00D 0748 2A89";}]; }; noisersup = { email = "patryk@kwiatek.xyz"; @@ -18358,14 +18358,14 @@ email = "bandali@gnu.org"; github = "bandali0"; githubId = 1254858; - keys = [ { fingerprint = "BE62 7373 8E61 6D6D 1B3A 08E8 A21A 0202 4881 6103"; } ]; + keys = [{fingerprint = "BE62 7373 8E61 6D6D 1B3A 08E8 A21A 0202 4881 6103";}]; }; notohh = { email = "contact@notohh.dev"; github = "notohh"; githubId = 31116143; name = "notohh"; - keys = [ { fingerprint = "C3CB 3B31 AF3F 986C 39E0 BE5B BD47 506D 475E E86D"; } ]; + keys = [{fingerprint = "C3CB 3B31 AF3F 986C 39E0 BE5B BD47 506D 475E E86D";}]; }; notthebee = { email = "moe@notthebe.ee"; @@ -18489,7 +18489,7 @@ githubId = 25458915; name = "Viktor Titov"; keys = [ - { fingerprint = "7CE2 4C42 942D 58EA 99F6 F00A A47E 7374 3EF6 FCC4"; } + {fingerprint = "7CE2 4C42 942D 58EA 99F6 F00A A47E 7374 3EF6 FCC4";} ]; }; nullcube = { @@ -18512,11 +18512,11 @@ githubId = 369111; keys = [ # >=2025, stays in one place - { fingerprint = "FD28 F9C9 81C5 D78E 56E8 8311 5C3E B94D 198F 1491"; } + {fingerprint = "FD28 F9C9 81C5 D78E 56E8 8311 5C3E B94D 198F 1491";} # >=2025, travels with me - { fingerprint = "C48F 475F 30A9 B192 3213 D5D5 C6E2 4809 77B2 F2F4"; } + {fingerprint = "C48F 475F 30A9 B192 3213 D5D5 C6E2 4809 77B2 F2F4";} # <=2024 - { fingerprint = "190B DA97 F616 DE35 6899 ED17 F819 F1AF 2FC1 C1FF"; } + {fingerprint = "190B DA97 F616 DE35 6899 ED17 F819 F1AF 2FC1 C1FF";} ]; }; numkem = { @@ -18556,7 +18556,7 @@ github = "nyadiia"; githubId = 43252360; name = "Nadia"; - keys = [ { fingerprint = "6B51 E324 238A F455 2381 313A 9254 1B0C D2A9 3AD8"; } ]; + keys = [{fingerprint = "6B51 E324 238A F455 2381 313A 9254 1B0C D2A9 3AD8";}]; }; nyanloutre = { email = "paul@nyanlout.re"; @@ -18587,7 +18587,7 @@ github = "nydragon"; email = "nix@ccnlc.eu"; githubId = 56591727; - keys = [ { fingerprint = "25FF 8464 F062 7EC0 0129 6A43 14AA 30A8 65EA 1209"; } ]; + keys = [{fingerprint = "25FF 8464 F062 7EC0 0129 6A43 14AA 30A8 65EA 1209";}]; }; nyukuru = { name = "nyukuru"; @@ -18601,7 +18601,7 @@ githubId = 7851175; name = "nzbr"; matrix = "@nzbr:nzbr.de"; - keys = [ { fingerprint = "BF3A 3EE6 3144 2C5F C9FB 39A7 6C78 B50B 97A4 2F8A"; } ]; + keys = [{fingerprint = "BF3A 3EE6 3144 2C5F C9FB 39A7 6C78 B50B 97A4 2F8A";}]; }; nzhang-zh = { email = "n.zhang.hp.au@gmail.com"; @@ -18632,7 +18632,7 @@ email = "dev@ob7.us"; github = "ob7"; githubId = 6877929; - keys = [ { fingerprint = "5C1C 0251 FA85 8C62 0E96 7AC5 2766 5625 0571 34E4"; } ]; + keys = [{fingerprint = "5C1C 0251 FA85 8C62 0E96 7AC5 2766 5625 0571 34E4";}]; }; obadz = { email = "obadz-nixos@obadz.com"; @@ -18658,7 +18658,7 @@ github = "obfusk"; githubId = 1260687; name = "FC Stegerman"; - keys = [ { fingerprint = "D5E4 A51D F8D2 55B9 FAC6 A9BB 2F96 07F0 9B36 0F2D"; } ]; + keys = [{fingerprint = "D5E4 A51D F8D2 55B9 FAC6 A9BB 2F96 07F0 9B36 0F2D";}]; }; obreitwi = { email = "oliver@breitwieser.eu"; @@ -18683,7 +18683,7 @@ github = "ocfox"; githubId = 47410251; name = "ocfox"; - keys = [ { fingerprint = "939E F8A5 CED8 7F50 5BB5 B2D0 24BC 2738 5F70 234F"; } ]; + keys = [{fingerprint = "939E F8A5 CED8 7F50 5BB5 B2D0 24BC 2738 5F70 234F";}]; }; octodi = { name = "octodi"; @@ -18704,7 +18704,7 @@ github = "oddlama"; githubId = 31919558; name = "oddlama"; - keys = [ { fingerprint = "680A A614 E988 DE3E 84E0 DEFA 503F 6C06 8410 4B0A"; } ]; + keys = [{fingerprint = "680A A614 E988 DE3E 84E0 DEFA 503F 6C06 8410 4B0A";}]; }; odi = { email = "oliver.dunkl@gmail.com"; @@ -18746,7 +18746,7 @@ github = "ohheyrj"; name = "ohheyrj"; githubId = 5339261; - keys = [ { fingerprint = "4258 3FE7 12E9 6071 E84D 53C7 6E1D A270 0B72 746D"; } ]; + keys = [{fingerprint = "4258 3FE7 12E9 6071 E84D 53C7 6E1D A270 0B72 746D";}]; }; oida = { email = "oida@posteo.de"; @@ -18887,7 +18887,7 @@ email = "dev@onemoresuza.com"; github = "onemoresuza"; githubId = 106456302; - keys = [ { fingerprint = "6FD3 7E64 11C5 C659 2F34 EDBC 4352 D15F B177 F2A8"; } ]; + keys = [{fingerprint = "6FD3 7E64 11C5 C659 2F34 EDBC 4352 D15F B177 F2A8";}]; }; onixie = { email = "onixie@gmail.com"; @@ -18919,7 +18919,7 @@ github = "make-42"; githubId = 17462236; matrix = "@ontake:matrix.ontake.dev"; - keys = [ { fingerprint = "36BC 916D DD4E B1EE EE82 4BBF DC95 900F 6DA7 9992"; } ]; + keys = [{fingerprint = "36BC 916D DD4E B1EE EE82 4BBF DC95 900F 6DA7 9992";}]; }; onthestairs = { email = "austinplatt@gmail.com"; @@ -18944,7 +18944,7 @@ email = "oliverwilkes2006@icloud.com"; github = "ooliver1"; githubId = 34910574; - keys = [ { fingerprint = "D055 8A23 3947 B7A0 F966 B07F 0B41 0348 9833 7273"; } ]; + keys = [{fingerprint = "D055 8A23 3947 B7A0 F966 B07F 0B41 0348 9833 7273";}]; }; Oops418 = { email = "oooopsxxx@gmail.com"; @@ -18987,7 +18987,7 @@ github = "orhun"; githubId = 24392180; name = "Orhun Parmaksız"; - keys = [ { fingerprint = "165E 0FF7 C48C 226E 1EC3 63A7 F834 2482 4B3E 4B90"; } ]; + keys = [{fingerprint = "165E 0FF7 C48C 226E 1EC3 63A7 F834 2482 4B3E 4B90";}]; }; orichter = { email = "richter-oliver@gmx.net"; @@ -19023,7 +19023,7 @@ github = "orzklv"; githubId = 54666588; name = "Sokhibjon Orzikulov"; - keys = [ { fingerprint = "00D2 7BC6 8707 0683 FBB9 137C 3C35 D3AF 0DA1 D6A8"; } ]; + keys = [{fingerprint = "00D2 7BC6 8707 0683 FBB9 137C 3C35 D3AF 0DA1 D6A8";}]; }; osbm = { email = "osmanfbayram@gmail.com"; @@ -19054,7 +19054,7 @@ github = "ostrolucky"; githubId = 496233; name = "Gabriel Ostrolucký"; - keys = [ { fingerprint = "6611 22A7 B778 6E4A E99A 9D6E C79A D015 19EF B134"; } ]; + keys = [{fingerprint = "6611 22A7 B778 6E4A E99A 9D6E C79A D015 19EF B134";}]; }; otavio = { email = "otavio.salvador@ossystems.com.br"; @@ -19098,7 +19098,7 @@ matrix = "@outfoxxed:outfoxxed.me"; github = "outfoxxed"; githubId = 83010835; - keys = [ { fingerprint = "0181 FF89 4F34 7FCC EB06 5710 4C88 A185 FB89 301E"; } ]; + keys = [{fingerprint = "0181 FF89 4F34 7FCC EB06 5710 4C88 A185 FB89 301E";}]; }; ovlach = { email = "ondrej@vlach.xyz"; @@ -19117,28 +19117,28 @@ github = "oxalica"; githubId = 14816024; name = "oxalica"; - keys = [ { fingerprint = "F90F FD6D 585C 2BA1 F13D E8A9 7571 654C F88E 31C2"; } ]; + keys = [{fingerprint = "F90F FD6D 585C 2BA1 F13D E8A9 7571 654C F88E 31C2";}]; }; oxapentane = { email = "blame@oxapentane.com"; github = "gshipunov"; githubId = 1297357; name = "Grigory Shipunov"; - keys = [ { fingerprint = "DD09 98E6 CDF2 9453 7FC6 04F9 91FA 5E5B F9AA 901C"; } ]; + keys = [{fingerprint = "DD09 98E6 CDF2 9453 7FC6 04F9 91FA 5E5B F9AA 901C";}]; }; oxij = { email = "oxij@oxij.org"; github = "oxij"; githubId = 391919; name = "Jan Malakhovski"; - keys = [ { fingerprint = "514B B966 B46E 3565 0508 86E8 0E6C A66E 5C55 7AA8"; } ]; + keys = [{fingerprint = "514B B966 B46E 3565 0508 86E8 0E6C A66E 5C55 7AA8";}]; }; oxzi = { email = "post@0x21.biz"; github = "oxzi"; githubId = 8402811; name = "Alvar Penning"; - keys = [ { fingerprint = "EB14 4E67 E57D 27E2 B5A4 CD8C F32A 4563 7FA2 5E31"; } ]; + keys = [{fingerprint = "EB14 4E67 E57D 27E2 B5A4 CD8C F32A 4563 7FA2 5E31";}]; }; oynqr = { email = "pd-nixpkgs@3b.pm"; @@ -19219,7 +19219,7 @@ github = "pagedMov"; githubId = 19557376; name = "Kyler Clay"; - keys = [ { fingerprint = "784B 3623 94E7 8F11 0B9D AE0F 56FD CFA6 2A93 B51E"; } ]; + keys = [{fingerprint = "784B 3623 94E7 8F11 0B9D AE0F 56FD CFA6 2A93 B51E";}]; }; paholg = { email = "paho@paholg.com"; @@ -19269,7 +19269,7 @@ matrix = "@panchoh:matrix.org"; github = "panchoh"; githubId = 471059; - keys = [ { fingerprint = "4430 F502 8B19 FAF4 A40E C4E8 11E0 447D 4ABB A7D0"; } ]; + keys = [{fingerprint = "4430 F502 8B19 FAF4 A40E C4E8 11E0 447D 4ABB A7D0";}]; }; panda2134 = { email = "me+nixpkgs@panda2134.site"; @@ -19394,7 +19394,7 @@ github = "PatrickDaG"; githubId = 58092422; name = "Patrick"; - keys = [ { fingerprint = "5E4C 3D74 80C2 35FE 2F0B D23F 7DD6 A72E C899 617D"; } ]; + keys = [{fingerprint = "5E4C 3D74 80C2 35FE 2F0B D23F 7DD6 A72E C899 617D";}]; }; patricksjackson = { email = "patrick@jackson.dev"; @@ -19407,7 +19407,7 @@ github = "Patryk27"; githubId = 3395477; name = "Patryk Wychowaniec"; - keys = [ { fingerprint = "196A BFEC 6A1D D1EC 7594 F8D1 F625 47D0 75E0 9767"; } ]; + keys = [{fingerprint = "196A BFEC 6A1D D1EC 7594 F8D1 F625 47D0 75E0 9767";}]; }; patryk4815 = { email = "patryk.sondej@gmail.com"; @@ -19474,7 +19474,7 @@ github = "pbek"; githubId = 1798101; name = "Patrizio Bekerle"; - keys = [ { fingerprint = "E005 48D5 D6AC 812C AAD2 AFFA 9C42 B05E 5913 60DC"; } ]; + keys = [{fingerprint = "E005 48D5 D6AC 812C AAD2 AFFA 9C42 B05E 5913 60DC";}]; }; pbeucher = { email = "pierre@crafteo.io"; @@ -19589,7 +19589,7 @@ github = "cyclic-pentane"; githubId = 74795488; name = "pentane"; - keys = [ { fingerprint = "4231 75F6 8360 68C8 2ACB AEDA 63F4 EC2F FE55 0874"; } ]; + keys = [{fingerprint = "4231 75F6 8360 68C8 2ACB AEDA 63F4 EC2F FE55 0874";}]; }; perchun = { name = "Perchun Pak"; @@ -19655,7 +19655,7 @@ github = "peterwilli"; githubId = 1212814; name = "Peter Willemsen"; - keys = [ { fingerprint = "A37F D403 88E2 D026 B9F6 9617 5C9D D4BF B96A 28F0"; } ]; + keys = [{fingerprint = "A37F D403 88E2 D026 B9F6 9617 5C9D D4BF B96A 28F0";}]; }; peti = { email = "simons@cryp.to"; @@ -19674,7 +19674,7 @@ github = "petrkozorezov"; githubId = 645017; name = "Petr Kozorezov"; - keys = [ { fingerprint = "7F1A 353D 3D6D 9CEF 63A9 B5C6 699F 32D5 9999 7C90"; } ]; + keys = [{fingerprint = "7F1A 353D 3D6D 9CEF 63A9 B5C6 699F 32D5 9999 7C90";}]; }; petrosagg = { email = "petrosagg@gmail.com"; @@ -19700,7 +19700,7 @@ matrix = "@phaer:matrix.org"; github = "phaer"; githubId = 101753; - keys = [ { fingerprint = "5D69 CF04 B7BC 2BC1 A567 9267 00BC F29B 3208 0700"; } ]; + keys = [{fingerprint = "5D69 CF04 B7BC 2BC1 A567 9267 00BC F29B 3208 0700";}]; }; phanirithvij = { name = "Phani Rithvij"; @@ -19715,7 +19715,7 @@ github = "leolavaur"; githubId = 82591009; - keys = [ { fingerprint = "7756 E88F 3C6A 47A5 C5F0 CDFB AB54 6777 F93E 20BF"; } ]; + keys = [{fingerprint = "7756 E88F 3C6A 47A5 C5F0 CDFB AB54 6777 F93E 20BF";}]; }; phdyellow = { name = "Phil Dyer"; @@ -19729,7 +19729,7 @@ github = "phfroidmont"; githubId = 8150907; - keys = [ { fingerprint = "3AC6 F170 F011 33CE 393B CD94 BE94 8AFD 7E78 73BE"; } ]; + keys = [{fingerprint = "3AC6 F170 F011 33CE 393B CD94 BE94 8AFD 7E78 73BE";}]; }; phijor = { name = "Philipp Joram"; @@ -19748,7 +19748,7 @@ matrix = "@phil8o:matrix.org"; github = "philclifford"; githubId = 8797027; - keys = [ { fingerprint = "FC15 E59F 0CFA 9329 101B 71D9 92F7 A790 E9BA F1F7"; } ]; + keys = [{fingerprint = "FC15 E59F 0CFA 9329 101B 71D9 92F7 A790 E9BA F1F7";}]; name = "Phil Clifford"; }; phile314 = { @@ -19762,7 +19762,7 @@ name = "Philip de Bruin"; github = "PhiliPdB"; githubId = 7051056; - keys = [ { fingerprint = "01AE 5EC2 39D9 CE4B DDB0 166A 4EC5 5FB7 07DC 24C4"; } ]; + keys = [{fingerprint = "01AE 5EC2 39D9 CE4B DDB0 166A 4EC5 5FB7 07DC 24C4";}]; }; Philipp-M = { email = "philipp@mildenberger.me"; @@ -19920,14 +19920,14 @@ github = "pingiun"; githubId = 1576660; name = "Jelle Besseling"; - keys = [ { fingerprint = "A3A3 65AE 16ED A7A0 C29C 88F1 9712 452E 8BE3 372E"; } ]; + keys = [{fingerprint = "A3A3 65AE 16ED A7A0 C29C 88F1 9712 452E 8BE3 372E";}]; }; pinpox = { email = "mail@pablo.tools"; github = "pinpox"; githubId = 1719781; name = "Pablo Ovelleiro Corral"; - keys = [ { fingerprint = "D03B 218C AE77 1F77 D7F9 20D9 823A 6154 4264 08D3"; } ]; + keys = [{fingerprint = "D03B 218C AE77 1F77 D7F9 20D9 823A 6154 4264 08D3";}]; }; piotrkwiecinski = { email = "piokwiecinski+nixpkgs@gmail.com"; @@ -20030,7 +20030,7 @@ email = "labadens.pierre+nixpkgs@gmail.com"; github = "plabadens"; githubId = 4303706; - keys = [ { fingerprint = "B00F E582 FD3F 0732 EA48 3937 F558 14E4 D687 4375"; } ]; + keys = [{fingerprint = "B00F E582 FD3F 0732 EA48 3937 F558 14E4 D687 4375";}]; }; pladypus = { name = "Peter Loftus"; @@ -20104,7 +20104,7 @@ github = "pmenke-de"; githubId = 898922; name = "Philipp Menke"; - keys = [ { fingerprint = "ED54 5EFD 64B6 B5AA EC61 8C16 EB7F 2D4C CBE2 3B69"; } ]; + keys = [{fingerprint = "ED54 5EFD 64B6 B5AA EC61 8C16 EB7F 2D4C CBE2 3B69";}]; }; pmeunier = { email = "pierre-etienne.meunier@inria.fr"; @@ -20124,7 +20124,7 @@ name = "Philip White"; github = "philipmw"; githubId = 1379645; - keys = [ { fingerprint = "9AB0 6C94 C3D1 F9D0 B9D9 A832 BC54 6FB3 B16C 8B0B"; } ]; + keys = [{fingerprint = "9AB0 6C94 C3D1 F9D0 B9D9 A832 BC54 6FB3 B16C 8B0B";}]; }; pmy = { email = "pmy@xqzp.net"; @@ -20161,7 +20161,7 @@ github = "pnotequalnp"; githubId = 46154511; name = "Kevin Mullins"; - keys = [ { fingerprint = "2CD2 B030 BD22 32EF DF5A 008A 3618 20A4 5DB4 1E9A"; } ]; + keys = [{fingerprint = "2CD2 B030 BD22 32EF DF5A 008A 3618 20A4 5DB4 1E9A";}]; }; podocarp = { email = "xdjiaxd@gmail.com"; @@ -20263,7 +20263,7 @@ github = "poscat0x04"; githubId = 53291983; name = "Poscat Tarski"; - keys = [ { fingerprint = "48AD DE10 F27B AFB4 7BB0 CCAF 2D25 95A0 0D08 ACE0"; } ]; + keys = [{fingerprint = "48AD DE10 F27B AFB4 7BB0 CCAF 2D25 95A0 0D08 ACE0";}]; }; posch = { email = "tp@fonz.de"; @@ -20281,7 +20281,7 @@ github = "pouya-abbassi"; githubId = 8519318; name = "Pouya Abbasi"; - keys = [ { fingerprint = "8CC7 EB15 3563 4205 E9C2 AAD9 AF5A 5A4A D4FD 8797"; } ]; + keys = [{fingerprint = "8CC7 EB15 3563 4205 E9C2 AAD9 AF5A 5A4A D4FD 8797";}]; }; poweredbypie = { name = "poweredbypie"; @@ -20330,7 +20330,7 @@ github = "pradyuman"; githubId = 9904569; name = "Pradyuman Vig"; - keys = [ { fingerprint = "240B 57DE 4271 2480 7CE3 EAC8 4F74 D536 1C4C A31E"; } ]; + keys = [{fingerprint = "240B 57DE 4271 2480 7CE3 EAC8 4F74 D536 1C4C A31E";}]; }; preisschild = { email = "florian@florianstroeger.com"; @@ -20344,7 +20344,7 @@ matrix = "@presto8:matrix.org"; github = "presto8"; githubId = 246631; - keys = [ { fingerprint = "3E46 7EF1 54AA A1D0 C7DF A694 E45C B17F 1940 CA52"; } ]; + keys = [{fingerprint = "3E46 7EF1 54AA A1D0 C7DF A694 E45C B17F 1940 CA52";}]; }; priegger = { email = "philipp@riegger.name"; @@ -20376,7 +20376,7 @@ matrix = "@princemachiavelli:matrix.org"; github = "Princemachiavelli"; githubId = 2730968; - keys = [ { fingerprint = "DD54 130B ABEC B65C 1F6B 2A38 8312 4F97 A318 EA18"; } ]; + keys = [{fingerprint = "DD54 130B ABEC B65C 1F6B 2A38 8312 4F97 A318 EA18";}]; }; prit342 = { email = "prithak342@gmail.com"; @@ -20425,8 +20425,8 @@ githubId = 7693005; name = "Petr Portnov"; keys = [ - { fingerprint = "884B 08D2 8DFF 6209 1857 C1C7 7E8F C8F7 D1BB 84A3"; } - { fingerprint = "AA96 35AA F392 52BF 0E60 825E 1192 2217 F828 8484"; } + {fingerprint = "884B 08D2 8DFF 6209 1857 C1C7 7E8F C8F7 D1BB 84A3";} + {fingerprint = "AA96 35AA F392 52BF 0E60 825E 1192 2217 F828 8484";} ]; }; progval = { @@ -20439,7 +20439,7 @@ name = "ProjectInitiative"; github = "ProjectInitiative"; githubId = 6314611; - keys = [ { fingerprint = "EEC7 53FC EAAA FD9E 4DC0 9BB5 CAEB 4185 C226 D76B"; } ]; + keys = [{fingerprint = "EEC7 53FC EAAA FD9E 4DC0 9BB5 CAEB 4185 C226 D76B";}]; }; prominentretail = { email = "me@jakepark.me"; @@ -20481,7 +20481,7 @@ github = "prrlvr"; githubId = 33699501; name = "Pierre-Olivier Rey"; - keys = [ { fingerprint = "40A0 78FD 297B 0AC1 E6D8 A119 4D38 49D9 9555 1307"; } ]; + keys = [{fingerprint = "40A0 78FD 297B 0AC1 E6D8 A119 4D38 49D9 9555 1307";}]; }; prtzl = { email = "matej.blagsic@protonmail.com"; @@ -20494,7 +20494,7 @@ github = "prusnak"; githubId = 42201; name = "Pavol Rusnak"; - keys = [ { fingerprint = "86E6 792F C27B FD47 8860 C110 91F3 B339 B9A0 2A3D"; } ]; + keys = [{fingerprint = "86E6 792F C27B FD47 8860 C110 91F3 B339 B9A0 2A3D";}]; }; psanford = { email = "psanford@sanford.io"; @@ -20508,7 +20508,7 @@ githubId = 37886; name = "Philipp Schmitt"; matrix = "@pschmitt:one.ems.host"; - keys = [ { fingerprint = "9FBF 2ABF FB37 F7F3 F502 44E5 DC43 9C47 EACB 17F9"; } ]; + keys = [{fingerprint = "9FBF 2ABF FB37 F7F3 F502 44E5 DC43 9C47 EACB 17F9";}]; }; pshirshov = { email = "pshirshov@eml.cc"; @@ -20628,7 +20628,7 @@ pwnwriter = { name = "Nabeen Tiwaree"; email = "hi@pwnwriter.me"; - keys = [ { fingerprint = "C153 DE7C 0A0D 432E F033 2B0B A524 11EC 5582 DE3A"; } ]; + keys = [{fingerprint = "C153 DE7C 0A0D 432E F033 2B0B A524 11EC 5582 DE3A";}]; github = "pwnwriter"; githubId = 90331517; }; @@ -20649,7 +20649,7 @@ email = "carter@isons.org"; github = "pyrotelekinetic"; githubId = 29682759; - keys = [ { fingerprint = "5963 78DB 25AA 608D 2743 D466 5D6A D9AE 71B3 F983"; } ]; + keys = [{fingerprint = "5963 78DB 25AA 608D 2743 D466 5D6A D9AE 71B3 F983";}]; }; pyrox0 = { name = "Pyrox"; @@ -20657,7 +20657,7 @@ matrix = "@pyrox:pyrox.dev"; github = "pyrox0"; githubId = 35778371; - keys = [ { fingerprint = "4CA9 72FB ADC8 1416 0F10 3138 FE1D 8A7D 620C 611F"; } ]; + keys = [{fingerprint = "4CA9 72FB ADC8 1416 0F10 3138 FE1D 8A7D 620C 611F";}]; }; pyxels = { email = "pyxels.dev@gmail.com"; @@ -20689,7 +20689,7 @@ github = "qbit"; githubId = 68368; matrix = "@qbit:tapenet.org"; - keys = [ { fingerprint = "3586 3350 BFEA C101 DB1A 4AF0 1F81 112D 62A9 ADCE"; } ]; + keys = [{fingerprint = "3586 3350 BFEA C101 DB1A 4AF0 1F81 112D 62A9 ADCE";}]; }; qdlmcfresh = { name = "Philipp Urlbauer"; @@ -20702,7 +20702,7 @@ email = "development@qf0xb.de"; github = "QF0xB"; githubId = 37348361; - keys = [ { fingerprint = "9036 0B7D B6B7 8B75 E901 3D11 3FF8 C23C 46F2 CC90"; } ]; + keys = [{fingerprint = "9036 0B7D B6B7 8B75 E901 3D11 3FF8 C23C 46F2 CC90";}]; }; qjoly = { email = "github@une-pause-cafe.fr"; @@ -20770,7 +20770,7 @@ github = "quentinmit"; githubId = 115761; name = "Quentin Smith"; - keys = [ { fingerprint = "1C71 A066 5400 AACD 142E B1A0 04EE 05A8 FCEF B697"; } ]; + keys = [{fingerprint = "1C71 A066 5400 AACD 142E B1A0 04EE 05A8 FCEF B697";}]; }; quentin-m = { email = "me+nix@quentin-machu.fr"; @@ -20831,7 +20831,7 @@ githubId = 2768870; name = "Alyssa Ross"; matrix = "@qyliss:fairydust.space"; - keys = [ { fingerprint = "7573 56D7 79BB B888 773E 415E 736C CDF9 EF51 BD97"; } ]; + keys = [{fingerprint = "7573 56D7 79BB B888 773E 415E 736C CDF9 EF51 BD97";}]; }; qyriad = { email = "qyriad@qyriad.me"; @@ -20857,7 +20857,7 @@ github = "r17x"; githubId = 16365952; name = "Rin"; - keys = [ { fingerprint = "476A F55D 6378 F878 0709 848A 18F9 F516 1CC0 576C"; } ]; + keys = [{fingerprint = "476A F55D 6378 F878 0709 848A 18F9 F516 1CC0 576C";}]; }; r3dl3g = { email = "redleg@rothfuss-web.de"; @@ -20875,7 +20875,7 @@ email = "raven6107@gmail.com"; github = "r4v3n6101"; githubId = 30029970; - keys = [ { fingerprint = "FA05 8A29 B45E 06C0 8FE9 4907 05D2 BE42 F3EC D7CC"; } ]; + keys = [{fingerprint = "FA05 8A29 B45E 06C0 8FE9 4907 05D2 BE42 F3EC D7CC";}]; }; raboof = { email = "arnout@bzzt.net"; @@ -20908,7 +20908,7 @@ email = "pr9@tuta.io"; github = "rafa-dot-el"; githubId = 104688305; - keys = [ { fingerprint = "5F0B 3EAC F1F9 8155 0946 CDF5 469E 3255 A40D 2AD6"; } ]; + keys = [{fingerprint = "5F0B 3EAC F1F9 8155 0946 CDF5 469E 3255 A40D 2AD6";}]; }; rafaelgg = { email = "rafael.garcia.gallego@gmail.com"; @@ -20958,7 +20958,7 @@ github = "rake5k"; githubId = 13007345; name = "Christian Harke"; - keys = [ { fingerprint = "4EBB 30F1 E89A 541A A7F2 52BE 830A 9728 6309 66F4"; } ]; + keys = [{fingerprint = "4EBB 30F1 E89A 541A A7F2 52BE 830A 9728 6309 66F4";}]; }; rakesh4g = { email = "rakeshgupta4u@gmail.com"; @@ -20984,7 +20984,7 @@ email = "nix@caseylink.com"; github = "Ramblurr"; githubId = 14830; - keys = [ { fingerprint = "978C 4D08 058B A26E B97C B518 2078 2DBC ACFA ACDA"; } ]; + keys = [{fingerprint = "978C 4D08 058B A26E B97C B518 2078 2DBC ACFA ACDA";}]; }; ramkromberg = { email = "ramkromberg@mail.com"; @@ -21005,7 +21005,7 @@ matrix = "@rane:junkyard.systems"; github = "digitalrane"; githubId = 1829286; - keys = [ { fingerprint = "EBB6 0EE1 488F D04C D922 C039 AE96 1AF5 9D40 10B5"; } ]; + keys = [{fingerprint = "EBB6 0EE1 488F D04C D922 C039 AE96 1AF5 9D40 10B5";}]; }; ranfdev = { email = "ranfdev@gmail.com"; @@ -21069,7 +21069,7 @@ githubId = 98173832; name = "Balthazar Patiachvili"; matrix = "@ratcornu:skaven.org"; - keys = [ { fingerprint = "1B91 F087 3D06 1319 D3D0 7F91 FA47 BDA2 6048 9ADA"; } ]; + keys = [{fingerprint = "1B91 F087 3D06 1319 D3D0 7F91 FA47 BDA2 6048 9ADA";}]; }; ratsclub = { email = "victor@freire.dev.br"; @@ -21135,7 +21135,7 @@ name = "Rocky Breslow"; github = "rbreslow"; githubId = 1774125; - keys = [ { fingerprint = "B5B7 BCA0 EE6F F31E 263A 69E3 A0D3 2ACC A38B 88ED"; } ]; + keys = [{fingerprint = "B5B7 BCA0 EE6F F31E 263A 69E3 A0D3 2ACC A38B 88ED";}]; }; rbrewer = { email = "rwb123@gmail.com"; @@ -21166,7 +21166,7 @@ github = "rconybea"; githubId = 8570969; name = "Roland Conybeare"; - keys = [ { fingerprint = "bw5Cr/4ul1C2UvxopphbZbFI1i5PCSnOmPID7mJ/Ogo"; } ]; + keys = [{fingerprint = "bw5Cr/4ul1C2UvxopphbZbFI1i5PCSnOmPID7mJ/Ogo";}]; }; rdnetto = { email = "rdnetto@gmail.com"; @@ -21188,7 +21188,7 @@ githubId = 7413633; keys = [ # compare with https://keybase.io/reckenrode - { fingerprint = "01D7 5486 3A6D 64EA AC77 0D26 FBF1 9A98 2CCE 0048"; } + {fingerprint = "01D7 5486 3A6D 64EA AC77 0D26 FBF1 9A98 2CCE 0048";} ]; }; redbaron = { @@ -21304,7 +21304,7 @@ email = "remy@remysplace.de"; github = "remyvv"; githubId = 2862815; - keys = [ { fingerprint = "1A76 F3A3 F843 2D5F D7E5 D07B 6FD8 F273 5BEB D1FC"; } ]; + keys = [{fingerprint = "1A76 F3A3 F843 2D5F D7E5 D07B 6FD8 F273 5BEB D1FC";}]; }; renatoGarcia = { email = "fgarcia.renato@gmail.com"; @@ -21323,7 +21323,7 @@ email = "bj.ren.coding@outlook.com"; github = "rennsax"; githubId = 93167100; - keys = [ { fingerprint = "9075 CEF8 9850 D261 6599 641A A2C9 36D5 B88C 139C"; } ]; + keys = [{fingerprint = "9075 CEF8 9850 D261 6599 641A A2C9 36D5 B88C 139C";}]; }; renpenguin = { email = "redpenguin777@yahoo.com"; @@ -21371,7 +21371,7 @@ name = "Tassilo Tanneberger"; github = "tanneberger"; githubId = 32239737; - keys = [ { fingerprint = "91EB E870 1639 1323 642A 6803 B966 009D 57E6 9CC6"; } ]; + keys = [{fingerprint = "91EB E870 1639 1323 642A 6803 B966 009D 57E6 9CC6";}]; }; rewine = { email = "lhongxu@outlook.com"; @@ -21560,8 +21560,8 @@ github = "rissson"; githubId = 18313093; keys = [ - { fingerprint = "8A0E 6A7C 08AB B9DE 67DE 2A13 F6FD 87B1 5C26 3EC9"; } - { fingerprint = "C0A7 A9BB 115B C857 4D75 EA99 BBB7 A680 1DF1 E03F"; } + {fingerprint = "8A0E 6A7C 08AB B9DE 67DE 2A13 F6FD 87B1 5C26 3EC9";} + {fingerprint = "C0A7 A9BB 115B C857 4D75 EA99 BBB7 A680 1DF1 E03F";} ]; }; ritiek = { @@ -21571,7 +21571,7 @@ github = "ritiek"; githubId = 20314742; keys = [ - { fingerprint = "66FF 6099 7B04 845F F4C0 CB4F EB6F C9F9 FC96 4257"; } + {fingerprint = "66FF 6099 7B04 845F F4C0 CB4F EB6F C9F9 FC96 4257";} ]; }; rixed = { @@ -21653,7 +21653,7 @@ github = "rnhmjoj"; githubId = 2817565; name = "Michele Guerini Rocco"; - keys = [ { fingerprint = "92B2 904F D293 C94D C4C9 3E6B BFBA F4C9 75F7 6450"; } ]; + keys = [{fingerprint = "92B2 904F D293 C94D C4C9 3E6B BFBA F4C9 75F7 6450";}]; }; roastiek = { email = "r.dee.b.b@gmail.com"; @@ -21732,7 +21732,7 @@ email = "nix@ireas.org"; github = "robinkrahl"; githubId = 165115; - keys = [ { fingerprint = "EC7E F0F9 B681 4C24 6236 3842 B755 6972 702A FD45"; } ]; + keys = [{fingerprint = "EC7E F0F9 B681 4C24 6236 3842 B755 6972 702A FD45";}]; name = "Robin Krahl"; }; roblabla = { @@ -21745,7 +21745,7 @@ email = "r@sliwi.org"; github = "robsliwi"; githubId = 14806293; - keys = [ { fingerprint = "37F4 9AB8 340B AAE2 4DB8 4322 08BD 6076 8CCE 08F1"; } ]; + keys = [{fingerprint = "37F4 9AB8 340B AAE2 4DB8 4322 08BD 6076 8CCE 08F1";}]; name = "Robert Sliwinski"; }; robwalt = { @@ -21843,7 +21843,7 @@ github = "Rookeur"; githubId = 57438432; name = "Adrien Langou"; - keys = [ { fingerprint = "3B8F FC41 0094 2CB4 5A2A 7DF2 5A44 DA8F 9071 91B0"; } ]; + keys = [{fingerprint = "3B8F FC41 0094 2CB4 5A2A 7DF2 5A44 DA8F 9071 91B0";}]; }; roosemberth = { email = "roosembert.palacios+nixpkgs@posteo.ch"; @@ -21851,13 +21851,13 @@ github = "roosemberth"; githubId = 3621083; name = "Roosembert (Roosemberth) Palacios"; - keys = [ { fingerprint = "78D9 1871 D059 663B 6117 7532 CAAA ECE5 C224 2BB7"; } ]; + keys = [{fingerprint = "78D9 1871 D059 663B 6117 7532 CAAA ECE5 C224 2BB7";}]; }; rople380 = { name = "rople380"; github = "rople380"; githubId = 55679162; - keys = [ { fingerprint = "1401 1B63 393D 16C1 AA9C C521 8526 B757 4A53 6236"; } ]; + keys = [{fingerprint = "1401 1B63 393D 16C1 AA9C C521 8526 B757 4A53 6236";}]; }; rorosen = { email = "robert.rose@mailbox.org"; @@ -21883,7 +21883,7 @@ matrix = "@rosscomputerguy:matrix.org"; github = "RossComputerGuy"; githubId = 19699320; - keys = [ { fingerprint = "FD5D F7A8 85BB 378A 0157 5356 B09C 4220 3566 9AF8"; } ]; + keys = [{fingerprint = "FD5D F7A8 85BB 378A 0157 5356 B09C 4220 3566 9AF8";}]; }; RossSmyth = { name = "Ross Smyth"; @@ -21955,14 +21955,14 @@ github = "rrbutani"; githubId = 7833358; matrix = "@rbutani:matrix.org"; - keys = [ { fingerprint = "7DCA 5615 8AB2 621F 2F32 9FF4 1C7C E491 479F A273"; } ]; + keys = [{fingerprint = "7DCA 5615 8AB2 621F 2F32 9FF4 1C7C E491 479F A273";}]; name = "Rahul Butani"; }; rseichter = { email = "nixos.org@seichter.de"; github = "rseichter"; githubId = 30873939; - keys = [ { fingerprint = "6AE2 A847 23D5 6D98 5B34 0BC0 8E5F A470 9F69 E911"; } ]; + keys = [{fingerprint = "6AE2 A847 23D5 6D98 5B34 0BC0 8E5F A470 9F69 E911";}]; name = "Ralph Seichter"; }; rskew = { @@ -22092,7 +22092,7 @@ email = "hi@grass.show"; github = "running-grass"; githubId = 17241154; - keys = [ { fingerprint = "5156 0FAB FF32 83EC BC8C EA13 9344 3660 9397 0138"; } ]; + keys = [{fingerprint = "5156 0FAB FF32 83EC BC8C EA13 9344 3660 9397 0138";}]; }; rushmorem = { email = "rushmore@webenchanter.com"; @@ -22195,7 +22195,7 @@ github = "ryane"; githubId = 7346; name = "Ryan Eschinger"; - keys = [ { fingerprint = "E4F4 1EAB BF0F C785 06D8 62EF EF68 CF41 D42A 593D"; } ]; + keys = [{fingerprint = "E4F4 1EAB BF0F C785 06D8 62EF EF68 CF41 D42A 593D";}]; }; ryangibb = { email = "ryan@freumh.org"; @@ -22238,7 +22238,7 @@ github = "rycee"; githubId = 798147; name = "Robert Helgesson"; - keys = [ { fingerprint = "36CA CF52 D098 CC0E 78FB 0CB1 3573 356C 25C4 24D4"; } ]; + keys = [{fingerprint = "36CA CF52 D098 CC0E 78FB 0CB1 3573 356C 25C4 24D4";}]; }; ryneeverett = { email = "ryneeverett@gmail.com"; @@ -22263,27 +22263,27 @@ github = "rypervenche"; githubId = 1411504; name = "rypervenche"; - keys = [ { fingerprint = "1198 7A9F 03AE 47F0 4919 E334 6A41 2C4A ECE1 66EF"; } ]; + keys = [{fingerprint = "1198 7A9F 03AE 47F0 4919 E334 6A41 2C4A ECE1 66EF";}]; }; rytone = { email = "max@ryt.one"; github = "rastertail"; githubId = 8082305; name = "Maxwell Beck"; - keys = [ { fingerprint = "D260 79E3 C2BC 2E43 905B D057 BB3E FA30 3760 A0DB"; } ]; + keys = [{fingerprint = "D260 79E3 C2BC 2E43 905B D057 BB3E FA30 3760 A0DB";}]; }; rytswd = { email = "rytswd@gmail.com"; github = "rytswd"; githubId = 23435099; name = "Ryota"; - keys = [ { fingerprint = "2FAC 1A25 5175 125E F60B BC04 B89E C8B6 EE43 39C4"; } ]; + keys = [{fingerprint = "2FAC 1A25 5175 125E F60B BC04 B89E C8B6 EE43 39C4";}]; }; ryze = { name = "Ryze"; github = "ryze312"; githubId = 50497128; - keys = [ { fingerprint = "73D5 BFF5 0AD7 F3C1 AF1A AC24 9B29 6C5C EAEA AAC1"; } ]; + keys = [{fingerprint = "73D5 BFF5 0AD7 F3C1 AF1A AC24 9B29 6C5C EAEA AAC1";}]; }; rzetterberg = { email = "richard.zetterberg@gmail.com"; @@ -22311,7 +22311,7 @@ matrix = "@mark.sagikazar:matrix.org"; github = "sagikazarmark"; githubId = 1226384; - keys = [ { fingerprint = "E628 C811 6FB8 1657 F706 4EA4 F251 ADDC 9D04 1C7E"; } ]; + keys = [{fingerprint = "E628 C811 6FB8 1657 F706 4EA4 F251 ADDC 9D04 1C7E";}]; }; sailord = { name = "Sailord"; @@ -22325,7 +22325,7 @@ matrix = "@sako:imagisphe.re"; github = "Sakooooo"; githubId = 78461130; - keys = [ { fingerprint = "CA52 EE7B E681 720E 32B6 6792 FE52 FD65 B76E 4751"; } ]; + keys = [{fingerprint = "CA52 EE7B E681 720E 32B6 6792 FE52 FD65 B76E 4751";}]; }; samalws = { email = "sam@samalws.com"; @@ -22391,7 +22391,7 @@ github = "samlich"; githubId = 1349989; name = "samlich"; - keys = [ { fingerprint = "AE8C 0836 FDF6 3FFC 9580 C588 B156 8953 B193 9F1C"; } ]; + keys = [{fingerprint = "AE8C 0836 FDF6 3FFC 9580 C588 B156 8953 B193 9F1C";}]; }; samlukeyes123 = { email = "samlukeyes123@gmail.com"; @@ -22410,7 +22410,7 @@ email = "samuel@smartineau.me"; github = "Samuel-Martineau"; githubId = 44237969; - keys = [ { fingerprint = "79A1 CC17 67C7 32B6 A8A2 BF4F 71E0 8761 642D ACD2"; } ]; + keys = [{fingerprint = "79A1 CC17 67C7 32B6 A8A2 BF4F 71E0 8761 642D ACD2";}]; }; samuela = { email = "skainsworth@gmail.com"; @@ -22423,7 +22423,7 @@ email = "samuele.facenda@gmail.com"; github = "SamueleFacenda"; githubId = 92163673; - keys = [ { fingerprint = "3BA5 A3DB 3239 E2AC 1F3B 68A0 0DB8 3F58 B259 6271"; } ]; + keys = [{fingerprint = "3BA5 A3DB 3239 E2AC 1F3B 68A0 0DB8 3F58 B259 6271";}]; }; samuelrivas = { email = "samuelrivas@gmail.com"; @@ -22448,7 +22448,7 @@ email = "samyak201@gmail.com"; github = "Samyak2"; githubId = 34161949; - keys = [ { fingerprint = "155C F413 0129 C058 9A5F 5524 3658 73F2 F0C6 153B"; } ]; + keys = [{fingerprint = "155C F413 0129 C058 9A5F 5524 3658 73F2 F0C6 153B";}]; }; sander = { email = "s.vanderburg@tudelft.nl"; @@ -22491,7 +22491,7 @@ github = "sascha8a"; githubId = 6937965; name = "Alexander Lampalzer"; - keys = [ { fingerprint = "0350 3136 E22C C561 30E3 A4AE 2087 9CCA CD5C D670"; } ]; + keys = [{fingerprint = "0350 3136 E22C C561 30E3 A4AE 2087 9CCA CD5C D670";}]; }; saschagrunert = { email = "mail@saschagrunert.de"; @@ -22652,7 +22652,7 @@ name = "Jamie Quigley"; github = "Sciencentistguy"; githubId = 4983935; - keys = [ { fingerprint = "30BB FF3F AB0B BB3E 0435 F83C 8E8F F66E 2AE8 D970"; } ]; + keys = [{fingerprint = "30BB FF3F AB0B BB3E 0435 F83C 8E8F F66E 2AE8 D970";}]; }; scientiac = { email = "iac@scientiac.space"; @@ -22709,7 +22709,7 @@ matrix = "@Scrumplex:duckhub.io"; github = "Scrumplex"; githubId = 11587657; - keys = [ { fingerprint = "E173 237A C782 296D 98F5 ADAC E13D FD4B 4712 7951"; } ]; + keys = [{fingerprint = "E173 237A C782 296D 98F5 ADAC E13D FD4B 4712 7951";}]; }; scvalex = { name = "Alexandru Scvorțov"; @@ -22788,14 +22788,14 @@ github = "seberm"; githubId = 212597; name = "Otto Sabart"; - keys = [ { fingerprint = "0AF6 4C3B 1F12 14B3 8C8C 5786 1FA2 DBE6 7438 7CC3"; } ]; + keys = [{fingerprint = "0AF6 4C3B 1F12 14B3 8C8C 5786 1FA2 DBE6 7438 7CC3";}]; }; sebrut = { email = "kontakt@sebastian-rutofski.de"; github = "sebrut"; githubId = 3962409; name = "Sebastian Rutofski"; - keys = [ { fingerprint = "F1D4 8061 2830 3AF6 42DC 3867 C37F 3374 2A95 C547"; } ]; + keys = [{fingerprint = "F1D4 8061 2830 3AF6 42DC 3867 C37F 3374 2A95 C547";}]; }; sebtm = { email = "mail@sebastian-sellmeier.de"; @@ -22815,7 +22815,7 @@ matrix = "@sef:exotic.sh"; github = "sefidel"; githubId = 71049646; - keys = [ { fingerprint = "8BDF DFB5 6842 2393 82A0 441B 9238 BC70 9E05 516A"; } ]; + keys = [{fingerprint = "8BDF DFB5 6842 2393 82A0 441B 9238 BC70 9E05 516A";}]; }; sehqlr = { name = "Sam Hatfield"; @@ -22895,7 +22895,7 @@ email = "sephi@fhtagn.top"; github = "sephii"; githubId = 754333; - keys = [ { fingerprint = "2A9D 8E76 5EE2 237D 7B6B A2A5 4228 AB9E C061 2ADA"; } ]; + keys = [{fingerprint = "2A9D 8E76 5EE2 237D 7B6B A2A5 4228 AB9E C061 2ADA";}]; }; sepi = { email = "raffael@mancini.lu"; @@ -22921,7 +22921,7 @@ matrix = "@septem9er:fairydust.space"; github = "septem9er"; githubId = 33379902; - keys = [ { fingerprint = "C408 07F9 8677 3D98 EFF3 0980 355A 9AFB FD8E AD33"; } ]; + keys = [{fingerprint = "C408 07F9 8677 3D98 EFF3 0980 355A 9AFB FD8E AD33";}]; }; seqizz = { email = "seqizz@gmail.com"; @@ -22957,7 +22957,7 @@ github = "servalcatty"; githubId = 51969817; name = "Serval"; - keys = [ { fingerprint = "A317 37B3 693C 921B 480C C629 4A2A AAA3 82F8 294C"; } ]; + keys = [{fingerprint = "A317 37B3 693C 921B 480C C629 4A2A AAA3 82F8 294C";}]; }; sestrella = { email = "sestrella.me@gmail.com"; @@ -22970,7 +22970,7 @@ email = "sable@seyleri.us"; github = "seylerius"; githubId = 1145981; - keys = [ { fingerprint = "7246 B6E1 ABB9 9A48 4395 FD11 DC26 B921 A9E9 DBDE"; } ]; + keys = [{fingerprint = "7246 B6E1 ABB9 9A48 4395 FD11 DC26 B921 A9E9 DBDE";}]; }; sfrijters = { email = "sfrijters@gmail.com"; @@ -23033,8 +23033,8 @@ githubId = 23130178; name = "夜坂雅"; keys = [ - { fingerprint = "3237 D49E 8F81 5A45 2133 64EA 4FF3 5790 F405 53A9"; } - { fingerprint = "AC59 7AD3 89D1 CC56 18AD 1ED9 B712 3A2B 6B0A E434"; } + {fingerprint = "3237 D49E 8F81 5A45 2133 64EA 4FF3 5790 F405 53A9";} + {fingerprint = "AC59 7AD3 89D1 CC56 18AD 1ED9 B712 3A2B 6B0A E434";} ]; }; shadows_withal = { @@ -23115,7 +23115,7 @@ github = "shayne"; githubId = 79330; name = "Shayne Sweeney"; - keys = [ { fingerprint = "AFCB 29A0 F12E F367 9575 DABE 69DA 13E8 6BF4 03B0"; } ]; + keys = [{fingerprint = "AFCB 29A0 F12E F367 9575 DABE 69DA 13E8 6BF4 03B0";}]; }; shazow = { email = "andrey.petrov@shazow.net"; @@ -23195,7 +23195,7 @@ name = "Shiryel"; github = "shiryel"; githubId = 35617139; - keys = [ { fingerprint = "AB63 4CD9 3322 BD42 6231 F764 C404 1EA6 B326 33DE"; } ]; + keys = [{fingerprint = "AB63 4CD9 3322 BD42 6231 F764 C404 1EA6 B326 33DE";}]; }; shivaraj-bh = { email = "sbh69840@gmail.com"; @@ -23256,7 +23256,7 @@ email = "shreerammodi10@gmail.com"; github = "shrimpram"; githubId = 67710369; - keys = [ { fingerprint = "EA88 EA07 26E9 6CBF 6365 3966 163B 16EE 76ED 24CE"; } ]; + keys = [{fingerprint = "EA88 EA07 26E9 6CBF 6365 3966 163B 16EE 76ED 24CE";}]; }; shved = { name = "Yury Shvedov"; @@ -23342,7 +23342,7 @@ matrix = "@sigmasquadron:matrix.org"; github = "SigmaSquadron"; githubId = 174749595; - keys = [ { fingerprint = "E3CD E225 47C6 2DB6 6CCD BC06 CC3A E2EA 0000 0000"; } ]; + keys = [{fingerprint = "E3CD E225 47C6 2DB6 6CCD BC06 CC3A E2EA 0000 0000";}]; }; sigmike = { email = "mike+nixpkgs@lepton.fr"; @@ -23356,7 +23356,7 @@ github = "sikmir"; githubId = 688044; name = "Nikolay Korotkiy"; - keys = [ { fingerprint = "ADF4 C13D 0E36 1240 BD01 9B51 D1DE 6D7F 6936 63A5"; } ]; + keys = [{fingerprint = "ADF4 C13D 0E36 1240 BD01 9B51 D1DE 6D7F 6936 63A5";}]; }; silky = { name = "Noon van der Silk"; @@ -23370,7 +23370,7 @@ matrix = "@sils:vhack.eu"; github = "s1ls"; githubId = 91412114; - keys = [ { fingerprint = "C1DA A551 B422 7A6F 3FD9 6B3A 467B 7D12 9EA7 3AC9"; } ]; + keys = [{fingerprint = "C1DA A551 B422 7A6F 3FD9 6B3A 467B 7D12 9EA7 3AC9";}]; }; silvanshade = { github = "silvanshade"; @@ -23471,7 +23471,7 @@ github = "siriobalmelli"; githubId = 23038812; name = "Sirio Balmelli"; - keys = [ { fingerprint = "B234 EFD4 2B42 FE81 EE4D 7627 F72C 4A88 7F9A 24CA"; } ]; + keys = [{fingerprint = "B234 EFD4 2B42 FE81 EE4D 7627 F72C 4A88 7F9A 24CA";}]; }; sironheart = { email = "git@beisenherz.dev"; @@ -23538,7 +23538,7 @@ email = "steven.keuchel@gmail.com"; github = "skeuchel"; githubId = 617130; - keys = [ { fingerprint = "C4F7 46C7 B560 38D8 210F 0288 5877 DEE9 7428 557F"; } ]; + keys = [{fingerprint = "C4F7 46C7 B560 38D8 210F 0288 5877 DEE9 7428 557F";}]; }; skovati = { github = "skovati"; @@ -23603,21 +23603,21 @@ github = "slotThe"; matrix = "@slot-:matrix.org"; githubId = 50166980; - keys = [ { fingerprint = "4896 FB6C 9528 46C3 414C 2475 C927 DE8C 7DFD 57B8"; } ]; + keys = [{fingerprint = "4896 FB6C 9528 46C3 414C 2475 C927 DE8C 7DFD 57B8";}]; }; slwst = { email = "email@slw.st"; github = "slwst"; githubId = 11047377; name = "slwst"; - keys = [ { fingerprint = "6CEB 4A2F E6DC C345 1B2B 4733 AD52 C5FB 3EFE CC7A"; } ]; + keys = [{fingerprint = "6CEB 4A2F E6DC C345 1B2B 4733 AD52 C5FB 3EFE CC7A";}]; }; smakarov = { email = "setser200018@gmail.com"; github = "SeTSeR"; githubId = 12733495; name = "Sergey Makarov"; - keys = [ { fingerprint = "6F8A 18AE 4101 103F 3C54 24B9 6AA2 3A11 93B7 064B"; } ]; + keys = [{fingerprint = "6F8A 18AE 4101 103F 3C54 24B9 6AA2 3A11 93B7 064B";}]; }; smancill = { email = "smancill@smancill.dev"; @@ -23630,7 +23630,7 @@ github = "smaret"; githubId = 95471; name = "Sébastien Maret"; - keys = [ { fingerprint = "4242 834C D401 86EF 8281 4093 86E3 0E5A 0F5F C59C"; } ]; + keys = [{fingerprint = "4242 834C D401 86EF 8281 4093 86E3 0E5A 0F5F C59C";}]; }; smasher164 = { email = "aindurti@gmail.com"; @@ -23662,7 +23662,7 @@ email = "mason.bourgeois@gmail.com"; github = "Smona"; githubId = 7091399; - keys = [ { fingerprint = "897E 6BE3 0345 B43D CADD 05B7 290F CF08 1AED B3EC"; } ]; + keys = [{fingerprint = "897E 6BE3 0345 B43D CADD 05B7 290F CF08 1AED B3EC";}]; }; smonson = { name = "Samuel Monson"; @@ -23765,7 +23765,7 @@ name = "Soham S Gumaste"; github = "SohamG"; githubId = 7116239; - keys = [ { fingerprint = "E067 520F 5EF2 C175 3F60 50C0 BA46 725F 6A26 7442"; } ]; + keys = [{fingerprint = "E067 520F 5EF2 C175 3F60 50C0 BA46 725F 6A26 7442";}]; }; solson = { email = "scott@solson.me"; @@ -23836,7 +23836,7 @@ matrix = "@soywod:matrix.org"; github = "soywod"; githubId = 10437171; - keys = [ { fingerprint = "75F0 AB7C FE01 D077 AEE6 CAFD 353E 4A18 EE0F AB72"; } ]; + keys = [{fingerprint = "75F0 AB7C FE01 D077 AEE6 CAFD 353E 4A18 EE0F AB72";}]; }; spacedentist = { email = "sp@cedenti.st"; @@ -23898,7 +23898,7 @@ email = "bintangadiputrapratama@gmail.com"; github = "spitulax"; githubId = 96517350; - keys = [ { fingerprint = "652F FAAD 5CB8 AF1D 3F96 9521 929E D6C4 0414 D3F5"; } ]; + keys = [{fingerprint = "652F FAAD 5CB8 AF1D 3F96 9521 929E D6C4 0414 D3F5";}]; }; spk = { email = "laurent@spkdev.net"; @@ -23916,7 +23916,7 @@ github = "sportshead"; githubId = 32637656; name = "sportshead"; - keys = [ { fingerprint = "A6B6 D031 782E BDF7 631A 8E7E A874 DB2C BFD3 CFD0"; } ]; + keys = [{fingerprint = "A6B6 D031 782E BDF7 631A 8E7E A874 DB2C BFD3 CFD0";}]; }; sprock = { email = "rmason@mun.ca"; @@ -23947,7 +23947,7 @@ name = "squat"; github = "squat"; githubId = 20484159; - keys = [ { fingerprint = "F246 425A 7650 6F37 0552 BA8D DEA9 C405 09D9 65F5"; } ]; + keys = [{fingerprint = "F246 425A 7650 6F37 0552 BA8D DEA9 C405 09D9 65F5";}]; }; srghma = { email = "srghma@gmail.com"; @@ -23992,7 +23992,7 @@ matrix = "@ruby:isincredibly.gay"; github = "Sorixelle"; githubId = 38685302; - keys = [ { fingerprint = "2D76 76C7 A28E 16FC 75C7 268D 1B55 6ED8 4B0E 303A"; } ]; + keys = [{fingerprint = "2D76 76C7 A28E 16FC 75C7 268D 1B55 6ED8 4B0E 303A";}]; }; Srylax = { name = "Srylax"; @@ -24041,7 +24041,7 @@ email = "starcraft66@gmail.com"; github = "starcraft66"; githubId = 1858154; - keys = [ { fingerprint = "8597 4506 EC69 5392 0443 0805 9D98 CDAC FF04 FD78"; } ]; + keys = [{fingerprint = "8597 4506 EC69 5392 0443 0805 9D98 CDAC FF04 FD78";}]; }; stargate01 = { email = "christoph.honal@web.de"; @@ -24121,7 +24121,7 @@ matrix = "@steinybot:matrix.org"; github = "steinybot"; githubId = 4659562; - keys = [ { fingerprint = "2709 1DEC CC42 4635 4299 569C 21DE 1CAE 5976 2A0F"; } ]; + keys = [{fingerprint = "2709 1DEC CC42 4635 4299 569C 21DE 1CAE 5976 2A0F";}]; }; stelcodes = { email = "stel@stel.codes"; @@ -24134,7 +24134,7 @@ email = "homicide@disroot.org"; github = "stellessia"; githubId = 81514356; - keys = [ { fingerprint = "38E8 7F79 AE86 CA98 F8BC 45F8 1060 00A0 5E5B DB90"; } ]; + keys = [{fingerprint = "38E8 7F79 AE86 CA98 F8BC 45F8 1060 00A0 5E5B DB90";}]; }; stepbrobd = { name = "Yifei Sun"; @@ -24155,7 +24155,7 @@ email = "stephen.huan@cgdct.moe"; github = "stephen-huan"; githubId = 20411956; - keys = [ { fingerprint = "EA6E 2794 8C7D BF5D 0DF0 85A1 0FBC 2E3B A99D D60E"; } ]; + keys = [{fingerprint = "EA6E 2794 8C7D BF5D 0DF0 85A1 0FBC 2E3B A99D D60E";}]; }; stephenmw = { email = "stephen@q5comm.com"; @@ -24185,7 +24185,7 @@ email = "steven@steshaw.org"; github = "steshaw"; githubId = 45735; - keys = [ { fingerprint = "0AFE 77F7 474D 1596 EE55 7A29 1D9A 17DF D23D CB91"; } ]; + keys = [{fingerprint = "0AFE 77F7 474D 1596 EE55 7A29 1D9A 17DF D23D CB91";}]; }; stesie = { email = "stesie@brokenpipe.de"; @@ -24222,7 +24222,7 @@ github = "stevestreza"; githubId = 28552; name = "Steve Streza"; - keys = [ { fingerprint = "DFED 4E42 34E7 348C 57D4 6568 C4DC 30F8 5ABC 6FA1"; } ]; + keys = [{fingerprint = "DFED 4E42 34E7 348C 57D4 6568 C4DC 30F8 5ABC 6FA1";}]; }; stianlagstad = { email = "stianlagstad@gmail.com"; @@ -24241,7 +24241,7 @@ github = "StillerHarpo"; githubId = 25526706; name = "Florian Engel"; - keys = [ { fingerprint = "4E2D9B26940E0DABF376B7AF76762421D45837DE"; } ]; + keys = [{fingerprint = "4E2D9B26940E0DABF376B7AF76762421D45837DE";}]; matrix = "@qe7ftcyrpg:matrix.org"; }; stites = { @@ -24304,7 +24304,7 @@ matrix = "@stv0ge:matrix.org"; github = "stv0g"; githubId = 285829; - keys = [ { fingerprint = "09BE 3BAE 8D55 D4CD 8579 285A 9675 EAC3 4897 E6E2"; } ]; + keys = [{fingerprint = "09BE 3BAE 8D55 D4CD 8579 285A 9675 EAC3 4897 E6E2";}]; }; SubhrajyotiSen = { email = "subhrajyoti12@gmail.com"; @@ -24316,7 +24316,7 @@ github = "sudoforge"; githubId = 3893293; name = "sudoforge"; - keys = [ { fingerprint = "7EBCE51F278D30AE1C34036341BF61468C327D5A"; } ]; + keys = [{fingerprint = "7EBCE51F278D30AE1C34036341BF61468C327D5A";}]; }; sudosubin = { email = "sudosubin@gmail.com"; @@ -24565,7 +24565,7 @@ github = "t4ccer"; githubId = 64430288; name = "Tomasz Maciosowski"; - keys = [ { fingerprint = "6866 981C 4992 4D64 D154 E1AC 19E5 A2D8 B1E4 3F19"; } ]; + keys = [{fingerprint = "6866 981C 4992 4D64 D154 E1AC 19E5 A2D8 B1E4 3F19";}]; }; t4sm5n = { email = "t4sm5n@gmail.com"; @@ -24614,7 +24614,7 @@ github = "taikx4"; githubId = 94917129; name = "taikx4"; - keys = [ { fingerprint = "6B02 8103 C4E5 F68C D77C 9E54 CCD5 2C7B 37BB 837E"; } ]; + keys = [{fingerprint = "6B02 8103 C4E5 F68C D77C 9E54 CCD5 2C7B 37BB 837E";}]; }; tailhook = { email = "paul@colomiets.name"; @@ -24761,7 +24761,7 @@ github = "tbaldwin-dev"; githubId = 220447215; name = "Trent Baldwin"; - keys = [ { fingerprint = "930C 3A61 F911 1296 7DA5 56D1 665A 9E2A FCDD 68AA"; } ]; + keys = [{fingerprint = "930C 3A61 F911 1296 7DA5 56D1 665A 9E2A FCDD 68AA";}]; }; tbenst = { email = "nix@tylerbenster.com"; @@ -24808,7 +24808,7 @@ email = "contact@tchekda.fr"; github = "Tchekda"; githubId = 23559888; - keys = [ { fingerprint = "44CE A8DD 3B31 49CD 6246 9D8F D0A0 07ED A4EA DA0F"; } ]; + keys = [{fingerprint = "44CE A8DD 3B31 49CD 6246 9D8F D0A0 07ED A4EA DA0F";}]; name = "David Tchekachev"; }; tcheronneau = { @@ -24887,7 +24887,7 @@ matrix = "@tejing:matrix.org"; github = "tejing1"; githubId = 5663576; - keys = [ { fingerprint = "6F0F D43B 80E5 583E 60FC 51DC 4936 D067 EB12 AB32"; } ]; + keys = [{fingerprint = "6F0F D43B 80E5 583E 60FC 51DC 4936 D067 EB12 AB32";}]; }; telotortium = { email = "rirelan@gmail.com"; @@ -24949,14 +24949,14 @@ email = "terry@terryg.org"; github = "TerryGarcia"; githubId = 159372832; - keys = [ { fingerprint = "6F54 C08C 37C8 EC78 15FA 0D01 A721 8CBA 2D80 15C3"; } ]; + keys = [{fingerprint = "6F54 C08C 37C8 EC78 15FA 0D01 A721 8CBA 2D80 15C3";}]; }; Tert0 = { name = "Tert0"; github = "Tert0"; githubId = 62036464; email = "tert0byte@gmail.com"; - keys = [ { fingerprint = "F899 D3B5 00BF 98AE 9097 F616 7069 D89F 9E5C 97ED"; } ]; + keys = [{fingerprint = "F899 D3B5 00BF 98AE 9097 F616 7069 D89F 9E5C 97ED";}]; }; tesq0 = { email = "mikolaj.galkowski@gmail.com"; @@ -24980,7 +24980,7 @@ email = "anton@tetov.se"; github = "tetov"; githubId = 14882117; - keys = [ { fingerprint = "2B4D 0035 AFF0 F7DA CE5B 29D7 337D DB57 4A88 34DB"; } ]; + keys = [{fingerprint = "2B4D 0035 AFF0 F7DA CE5B 29D7 337D DB57 4A88 34DB";}]; name = "Anton Tetov"; }; teutat3s = { @@ -24989,7 +24989,7 @@ github = "teutat3s"; githubId = 10206665; name = "teutat3s"; - keys = [ { fingerprint = "81A1 1C61 F413 8C84 9139 A4FA 18DA E600 A6BB E705"; } ]; + keys = [{fingerprint = "81A1 1C61 F413 8C84 9139 A4FA 18DA E600 A6BB E705";}]; }; tex = { email = "milan.svoboda@centrum.cz"; @@ -25075,7 +25075,7 @@ matrix = "@thbltp:matrix.org"; github = "thblt"; githubId = 2453136; - keys = [ { fingerprint = "D2A2 F0A1 E7A8 5E6F B711 DEE5 63A4 4817 A52E AB7B"; } ]; + keys = [{fingerprint = "D2A2 F0A1 E7A8 5E6F B711 DEE5 63A4 4817 A52E AB7B";}]; }; the-argus = { email = "i.mcfarlane2002@gmail.com"; @@ -25089,7 +25089,7 @@ email = "dev@theaninova.de"; github = "Theaninova"; githubId = 19289296; - keys = [ { fingerprint = "6C9E EFC5 1AE0 0131 78DE B9C8 68FF FB1E C187 88CA"; } ]; + keys = [{fingerprint = "6C9E EFC5 1AE0 0131 78DE B9C8 68FF FB1E C187 88CA";}]; }; TheBrainScrambler = { email = "esthromeris@riseup.net"; @@ -25103,14 +25103,14 @@ matrix = "@capypara:matrix.org"; github = "theCapypara"; githubId = 3512122; - keys = [ { fingerprint = "5F29 132D EFA8 5DA0 B598 5BF2 5941 754C 1CDE 33BB"; } ]; + keys = [{fingerprint = "5F29 132D EFA8 5DA0 B598 5BF2 5941 754C 1CDE 33BB";}]; }; TheColorman = { name = "colorman"; email = "nixpkgs@colorman.me"; github = "TheColorman"; githubId = 18369995; - keys = [ { fingerprint = "3D8C A43C FBA2 5D28 0196 19F0 AB11 0475 B417 291D"; } ]; + keys = [{fingerprint = "3D8C A43C FBA2 5D28 0196 19F0 AB11 0475 B417 291D";}]; }; thedavidmeister = { email = "thedavidmeister@gmail.com"; @@ -25148,7 +25148,7 @@ email = "anisimovkosta19@gmail.com"; github = "TheKostins"; githubId = 39405421; - keys = [ { fingerprint = "B216 7B33 E248 097F D82A 991D C94D 589A 4D0D CDD2"; } ]; + keys = [{fingerprint = "B216 7B33 E248 097F D82A 991D C94D 589A 4D0D CDD2";}]; }; thelegy = { email = "mail+nixos@0jb.de"; @@ -25185,7 +25185,7 @@ email = "theo1.bori@epitech.eu"; github = "theobori"; githubId = 71843723; - keys = [ { fingerprint = "EEFB CC3A C529 CFD1 943D A75C BDD5 7BE9 9D55 5965"; } ]; + keys = [{fingerprint = "EEFB CC3A C529 CFD1 943D A75C BDD5 7BE9 9D55 5965";}]; }; theonlymrcat = { name = "Max Guppy"; @@ -25204,7 +25204,7 @@ email = "tpzker@thepuzzlemaker.info"; github = "ThePuzzlemaker"; githubId = 12666617; - keys = [ { fingerprint = "7095 C20A 9224 3DB6 5177 07B0 968C D9D7 1C9F BB6C"; } ]; + keys = [{fingerprint = "7095 C20A 9224 3DB6 5177 07B0 968C D9D7 1C9F BB6C";}]; }; therealansh = { email = "tyagiansh23@gmail.com"; @@ -25223,7 +25223,7 @@ github = "rouven0"; githubId = 72568063; name = "Rouven Seifert"; - keys = [ { fingerprint = "1169 87A8 DD3F 78FF 8601 BF4D B95E 8FE6 B11C 4D09"; } ]; + keys = [{fingerprint = "1169 87A8 DD3F 78FF 8601 BF4D B95E 8FE6 B11C 4D09";}]; }; theredstonedev = { email = "theredstonedev@devellight.space"; @@ -25248,7 +25248,7 @@ email = "me@thesola.io"; github = "Thesola10"; githubId = 7287268; - keys = [ { fingerprint = "1D05 13A6 1AC4 0D8D C6D6 5F2C 8924 5619 BEBB 95BA"; } ]; + keys = [{fingerprint = "1D05 13A6 1AC4 0D8D C6D6 5F2C 8924 5619 BEBB 95BA";}]; name = "Karim Vergnes"; }; thetallestjj = { @@ -25275,7 +25275,7 @@ githubId = 875885; name = "Konstantin Bogdanov"; keys = [ - { fingerprint = "3221 7A73 EB95 0E9E E550 36A3 DB39 9448 D9FE 52F1"; } + {fingerprint = "3221 7A73 EB95 0E9E E550 36A3 DB39 9448 D9FE 52F1";} ]; }; theverygaming = { @@ -25422,7 +25422,7 @@ github = "Thunderbottom"; githubId = 11243138; name = "Chinmay D. Pai"; - keys = [ { fingerprint = "7F3E EEAA EE66 93CC 8782 042A 7550 7BE2 56F4 0CED"; } ]; + keys = [{fingerprint = "7F3E EEAA EE66 93CC 8782 042A 7550 7BE2 56F4 0CED";}]; }; thyol = { name = "thyol"; @@ -25553,7 +25553,7 @@ github = "titaniumtown"; githubId = 11786225; matrix = "@titaniumtown:envs.net"; - keys = [ { fingerprint = "D15E 4754 FE1A EDA1 5A6D 4702 9AB2 8AC1 0ECE 533D"; } ]; + keys = [{fingerprint = "D15E 4754 FE1A EDA1 5A6D 4702 9AB2 8AC1 0ECE 533D";}]; }; tjkeller = { email = "tjk@tjkeller.xyz"; @@ -25567,14 +25567,14 @@ name = "Theodore Ni"; github = "tjni"; githubId = 3806110; - keys = [ { fingerprint = "4384 B8E1 299F C028 1641 7B8F EC30 EFBE FA7E 84A4"; } ]; + keys = [{fingerprint = "4384 B8E1 299F C028 1641 7B8F EC30 EFBE FA7E 84A4";}]; }; tkerber = { email = "tk@drwx.org"; github = "tkerber"; githubId = 5722198; name = "Thomas Kerber"; - keys = [ { fingerprint = "556A 403F B0A2 D423 F656 3424 8489 B911 F9ED 617B"; } ]; + keys = [{fingerprint = "556A 403F B0A2 D423 F656 3424 8489 B911 F9ED 617B";}]; }; tljuniper = { email = "tljuniper1@gmail.com"; @@ -25643,7 +25643,7 @@ github = "toastal"; githubId = 561087; name = "toastal"; - keys = [ { fingerprint = "7944 74B7 D236 DAB9 C9EF E7F9 5CCE 6F14 66D4 7C9E"; } ]; + keys = [{fingerprint = "7944 74B7 D236 DAB9 C9EF E7F9 5CCE 6F14 66D4 7C9E";}]; }; toasteruwu = { email = "Aki@ToasterUwU.com"; @@ -25692,7 +25692,7 @@ githubId = 62384384; matrix = "@tomasajt:matrix.org"; name = "TomaSajt"; - keys = [ { fingerprint = "8CA9 8016 F44D B717 5B44 6032 F011 163C 0501 22A1"; } ]; + keys = [{fingerprint = "8CA9 8016 F44D B717 5B44 6032 F011 163C 0501 22A1";}]; }; tomaskala = { email = "public+nixpkgs@tomaskala.com"; @@ -25747,7 +25747,7 @@ github = "tomodachi94"; githubId = 68489118; name = "Tomodachi94"; - keys = [ { fingerprint = "B208 D6E5 B8ED F47D 5687 627B 2E27 5F21 C4D5 54A3"; } ]; + keys = [{fingerprint = "B208 D6E5 B8ED F47D 5687 627B 2E27 5F21 C4D5 54A3";}]; }; tomsiewert = { email = "tom@siewert.io"; @@ -26044,7 +26044,7 @@ github = "tuxinaut"; githubId = 722482; name = "Denny Schäfer"; - keys = [ { fingerprint = "C752 0E49 4D92 1740 D263 C467 B057 455D 1E56 7270"; } ]; + keys = [{fingerprint = "C752 0E49 4D92 1740 D263 C467 B057 455D 1E56 7270";}]; }; tuxy = { email = "lastpass7565@gmail.com"; @@ -26104,7 +26104,7 @@ email = "twhitehead@gmail.com"; github = "twhitehead"; githubId = 787843; - keys = [ { fingerprint = "E631 8869 586F 99B4 F6E6 D785 5942 58F0 389D 2802"; } ]; + keys = [{fingerprint = "E631 8869 586F 99B4 F6E6 D785 5942 58F0 389D 2802";}]; }; twitchy0 = { email = "code@nitinpassa.com"; @@ -26117,7 +26117,7 @@ email = "tom@bibbu.net"; github = "twz123"; githubId = 1215104; - keys = [ { fingerprint = "B1FD 4E2A 84B2 2379 F4BF 2EF5 FE33 A228 2371 E831"; } ]; + keys = [{fingerprint = "B1FD 4E2A 84B2 2379 F4BF 2EF5 FE33 A228 2371 E831";}]; }; tyberius-prime = { name = "Tyberius Prime"; @@ -26134,7 +26134,7 @@ name = "Tygo van den Hurk"; github = "Tygo-van-den-Hurk"; githubId = 91738110; - keys = [ { fingerprint = "1AAE 628A 2D49 0597 17AE A7F8 7CA2 CBB2 7505 8A44"; } ]; + keys = [{fingerprint = "1AAE 628A 2D49 0597 17AE A7F8 7CA2 CBB2 7505 8A44";}]; }; tylerjl = { email = "tyler+nixpkgs@langlois.to"; @@ -26209,7 +26209,7 @@ github = "ulinja"; githubId = 56582668; name = "Julian Lobbes"; - keys = [ { fingerprint = "24D9 B20A 65C2 DFB9 8E6A 754C 8EC4 6A5E 6743 3524"; } ]; + keys = [{fingerprint = "24D9 B20A 65C2 DFB9 8E6A 754C 8EC4 6A5E 6743 3524";}]; }; ulrikstrid = { email = "ulrik.strid@outlook.com"; @@ -26241,14 +26241,14 @@ matrix = "@unhidden0174:matrix.org"; github = "unclamped"; githubId = 104658278; - keys = [ { fingerprint = "57A2 CC43 3068 CB62 89C1 F1DA 9137 BB2E 77AD DE7E"; } ]; + keys = [{fingerprint = "57A2 CC43 3068 CB62 89C1 F1DA 9137 BB2E 77AD DE7E";}]; }; unclechu = { name = "Viacheslav Lotsmanov"; email = "lotsmanov89@gmail.com"; github = "unclechu"; githubId = 799353; - keys = [ { fingerprint = "EE59 5E29 BB5B F2B3 5ED2 3F1C D276 FF74 6700 7335"; } ]; + keys = [{fingerprint = "EE59 5E29 BB5B F2B3 5ED2 3F1C D276 FF74 6700 7335";}]; }; undefined-landmark = { name = "bas"; @@ -26261,7 +26261,7 @@ email = "i@undefined.moe"; github = "undefined-moe"; githubId = 29992205; - keys = [ { fingerprint = "6684 4E7D D213 C75D 8828 6215 C714 A58B 6C1E 0F52"; } ]; + keys = [{fingerprint = "6684 4E7D D213 C75D 8828 6215 C714 A58B 6C1E 0F52";}]; }; ungeskriptet = { name = "David Wronek"; @@ -26274,7 +26274,7 @@ github = "unhammer"; githubId = 56868; name = "Kevin Brubeck Unhammer"; - keys = [ { fingerprint = "50D4 8796 0B86 3F05 4B6A 12F9 7426 06DE 766A C60C"; } ]; + keys = [{fingerprint = "50D4 8796 0B86 3F05 4B6A 12F9 7426 06DE 766A C60C";}]; }; uniquepointer = { email = "uniquepointer@mailbox.org"; @@ -26312,7 +26312,7 @@ matrix = "@urandom0:matrix.org"; github = "urandom2"; githubId = 2526260; - keys = [ { fingerprint = "04A3 A2C6 0042 784A AEA7 D051 0447 A663 F7F3 E236"; } ]; + keys = [{fingerprint = "04A3 A2C6 0042 784A AEA7 D051 0447 A663 F7F3 E236";}]; name = "Colin Arnott"; }; urbas = { @@ -26344,7 +26344,7 @@ email = "code@usertam.dev"; github = "usertam"; githubId = 22500027; - keys = [ { fingerprint = "EC4E E490 3C82 3698 2CAB D206 2D87 60B0 229E 2560"; } ]; + keys = [{fingerprint = "EC4E E490 3C82 3698 2CAB D206 2D87 60B0 229E 2560";}]; }; uskudnik = { email = "urban.skudnik@gmail.com"; @@ -26466,7 +26466,7 @@ github = "VergeDX"; githubId = 25173827; name = "Vanilla"; - keys = [ { fingerprint = "2649 340C C909 F821 D251 6714 3750 028E D04F A42E"; } ]; + keys = [{fingerprint = "2649 340C C909 F821 D251 6714 3750 028E D04F A42E";}]; }; vanschelven = { email = "klaas@vanschelven.com"; @@ -26529,7 +26529,7 @@ matrix = "@vcunat:matrix.org"; github = "vcunat"; githubId = 1785925; - keys = [ { fingerprint = "B600 6460 B60A 80E7 8206 2449 E747 DF1F 9575 A3AA"; } ]; + keys = [{fingerprint = "B600 6460 B60A 80E7 8206 2449 E747 DF1F 9575 A3AA";}]; }; vdemeester = { email = "vincent@sbr.pm"; @@ -26554,7 +26554,7 @@ email = "mail@vincent-haupert.de"; github = "veehaitch"; githubId = 15069839; - keys = [ { fingerprint = "4D23 ECDF 880D CADF 5ECA 4458 874B D6F9 16FA A742"; } ]; + keys = [{fingerprint = "4D23 ECDF 880D CADF 5ECA 4458 874B D6F9 16FA A742";}]; }; vel = { email = "llathasa@outlook.com"; @@ -26597,7 +26597,7 @@ email = "me@skye.vg"; github = "vgskye"; githubId = 116078858; - keys = [ { fingerprint = "CDEA 7E04 69E3 0885 A754 4B05 0104 BC05 F41B 77B8"; } ]; + keys = [{fingerprint = "CDEA 7E04 69E3 0885 A754 4B05 0104 BC05 F41B 77B8";}]; }; victormeriqui = { name = "Victor Meriqui"; @@ -26634,7 +26634,7 @@ github = "vikanezrimaya"; githubId = 7953163; name = "Vika Shleina"; - keys = [ { fingerprint = "5814 50EB 6E17 E715 7C63 E7F1 9879 8C3C 4D68 8D6D"; } ]; + keys = [{fingerprint = "5814 50EB 6E17 E715 7C63 E7F1 9879 8C3C 4D68 8D6D";}]; }; viktornordling = { email = "antique_paler_0i@icloud.com"; @@ -26659,7 +26659,7 @@ github = "vincentbernat"; githubId = 631446; name = "Vincent Bernat"; - keys = [ { fingerprint = "AEF2 3487 66F3 71C6 89A7 3600 95A4 2FE8 3535 25F9"; } ]; + keys = [{fingerprint = "AEF2 3487 66F3 71C6 89A7 3600 95A4 2FE8 3535 25F9";}]; }; vinetos = { name = "vinetos"; @@ -26726,7 +26726,7 @@ github = "ViZiD"; githubId = 7444430; name = "Radik Islamov"; - keys = [ { fingerprint = "5779 01B8 C620 E064 4212 C6FC F396 46E8 0C71 08E7"; } ]; + keys = [{fingerprint = "5779 01B8 C620 E064 4212 C6FC F396 46E8 0C71 08E7";}]; }; vji = { email = "mail@viktor.im"; @@ -26775,7 +26775,7 @@ github = "vncsb"; githubId = 19562240; name = "Vinicius Bernardino"; - keys = [ { fingerprint = "F0D3 920C 722A 541F 0CCD 66E3 A7BA BA05 3D78 E7CA"; } ]; + keys = [{fingerprint = "F0D3 920C 722A 541F 0CCD 66E3 A7BA BA05 3D78 E7CA";}]; }; vnpower = { email = "vnpower@loang.net"; @@ -26788,7 +26788,7 @@ github = "vog"; githubId = 412749; name = "Volker Diels-Grabsch"; - keys = [ { fingerprint = "A7E6 9C4F 69DC 5D6C FC84 EE34 A29F BD51 5F89 90AF"; } ]; + keys = [{fingerprint = "A7E6 9C4F 69DC 5D6C FC84 EE34 A29F BD51 5F89 90AF";}]; }; voidless = { email = "julius.schmitt@yahoo.de"; @@ -26837,7 +26837,7 @@ name = "Dmitry Voronin"; github = "voronind-com"; githubId = 22127600; - keys = [ { fingerprint = "3241 FDAD 82A7 E22D 4279 F405 913F 3267 9278 2E1C"; } ]; + keys = [{fingerprint = "3241 FDAD 82A7 E22D 4279 F405 913F 3267 9278 2E1C";}]; }; votava = { email = "votava@gmail.com"; @@ -26845,6 +26845,12 @@ githubId = 367185; name = "Jan Votava"; }; + voxi0 = { + name = "Wasiq Arbab"; + email = "alif200099@gmail.com"; + github = "Voxi0"; + githubId = 113725768; + }; vpetersson = { email = "vpetersson@screenly.io"; github = "vpetersson"; @@ -26934,7 +26940,7 @@ email = "wackbyte@pm.me"; github = "wackbyte"; githubId = 29505620; - keys = [ { fingerprint = "E595 7FE4 FEF6 714B 1AD3 1483 937F 2AE5 CCEF BF59"; } ]; + keys = [{fingerprint = "E595 7FE4 FEF6 714B 1AD3 1483 937F 2AE5 CCEF BF59";}]; }; waelwindows = { email = "waelwindows9922@gmail.com"; @@ -26947,7 +26953,7 @@ email = "williamvphan@yahoo.fr"; github = "wahtique"; githubId = 55251330; - keys = [ { fingerprint = "9262 E3A7 D129 C4DD A7C1 26CE 370D D9BE 9121 F0B3"; } ]; + keys = [{fingerprint = "9262 E3A7 D129 C4DD A7C1 26CE 370D D9BE 9121 F0B3";}]; }; waiting-for-dev = { email = "marc@lamarciana.com"; @@ -26960,7 +26966,7 @@ email = "sheng@a64.work"; github = "wakira"; githubId = 2338339; - keys = [ { fingerprint = "47F7 009E 3AE3 1DA7 988E 12E1 8C9B 0A8F C0C0 D862"; } ]; + keys = [{fingerprint = "47F7 009E 3AE3 1DA7 988E 12E1 8C9B 0A8F C0C0 D862";}]; }; wamirez = { email = "wamirez@protonmail.com"; @@ -27023,7 +27029,7 @@ matrix = "@weathercold:matrix.org"; github = "Weathercold"; githubId = 49368953; - keys = [ { fingerprint = "D20F C904 A145 8B28 53D8 FBA0 0422 0096 01E4 87FC"; } ]; + keys = [{fingerprint = "D20F C904 A145 8B28 53D8 FBA0 0422 0096 01E4 87FC";}]; }; WeetHet = { name = "WeetHet"; @@ -27054,7 +27060,7 @@ github = "welteki"; githubId = 16267532; name = "Han Verstraete"; - keys = [ { fingerprint = "2145 955E 3F5E 0C95 3458 41B5 11F7 BAEA 8567 43FF"; } ]; + keys = [{fingerprint = "2145 955E 3F5E 0C95 3458 41B5 11F7 BAEA 8567 43FF";}]; }; wenjinnn = { name = "wenjin"; @@ -27091,7 +27097,7 @@ email = "wgn@wesnel.dev"; github = "wesnel"; githubId = 43357387; - keys = [ { fingerprint = "F844 80B2 0CA9 D6CC C7F5 2479 A776 D2AD 099E 8BC0"; } ]; + keys = [{fingerprint = "F844 80B2 0CA9 D6CC C7F5 2479 A776 D2AD 099E 8BC0";}]; }; wexder = { email = "wexder19@gmail.com"; @@ -27128,7 +27134,7 @@ github = "WhiteBlackGoose"; githubId = 31178401; name = "WhiteBlackGoose"; - keys = [ { fingerprint = "640B EDDE 9734 310A BFA3 B257 52ED AE6A 3995 AFAB"; } ]; + keys = [{fingerprint = "640B EDDE 9734 310A BFA3 B257 52ED AE6A 3995 AFAB";}]; }; whiteley = { email = "mattwhiteley@gmail.com"; @@ -27177,7 +27183,7 @@ email = "sebastian@wild-siena.com"; github = "wildsebastian"; githubId = 1215623; - keys = [ { fingerprint = "DA03 D6C6 3F58 E796 AD26 E99B 366A 2940 479A 06FC"; } ]; + keys = [{fingerprint = "DA03 D6C6 3F58 E796 AD26 E99B 366A 2940 479A 06FC";}]; }; wilhelmines = { email = "mail@aesz.org"; @@ -27215,7 +27221,7 @@ github = "spaghetus"; githubId = 28763739; name = "Willow Carlson-Huber"; - keys = [ { fingerprint = "FE21E0981CDFD50ADD086423C21A693BA4693A60"; } ]; + keys = [{fingerprint = "FE21E0981CDFD50ADD086423C21A693BA4693A60";}]; }; willswats = { email = "williamstuwatson@gmail.com"; @@ -27263,7 +27269,7 @@ email = "jade@witchof.space"; github = "witchof0x20"; githubId = 36118348; - keys = [ { fingerprint = "69C9 876B 5797 1B2E 11C5 7C39 80A1 F76F C9F9 54AE"; } ]; + keys = [{fingerprint = "69C9 876B 5797 1B2E 11C5 7C39 80A1 F76F C9F9 54AE";}]; }; wizardlink = { name = "wizardlink"; @@ -27335,7 +27341,7 @@ email = "walther@technowledgy.de"; github = "wolfgangwalther"; githubId = 9132420; - keys = [ { fingerprint = "F943 A0BC 720C 5BEF 73CD E02D B398 93FA 5F65 CAE1"; } ]; + keys = [{fingerprint = "F943 A0BC 720C 5BEF 73CD E02D B398 93FA 5F65 CAE1";}]; }; womeier = { name = "Wolfgang Meier"; @@ -27354,7 +27360,7 @@ github = "workflow"; githubId = 1276854; name = "Florian Peter"; - keys = [ { fingerprint = "C349 3C74 E232 A1EE E005 1678 2457 5DB9 3F6C EC16"; } ]; + keys = [{fingerprint = "C349 3C74 E232 A1EE E005 1678 2457 5DB9 3F6C EC16";}]; }; worldofpeace = { email = "worldofpeace@protonmail.ch"; @@ -27398,9 +27404,9 @@ github = "wrbbz"; githubId = 14261606; keys = [ - { fingerprint = "3724 B33B 0B85 F067 814C DA30 FC77 0786 0149 E41E"; } - { fingerprint = "A18D 996A D48C 10E8 B985 A219 B43D 995D 2501 1DFA"; } - { fingerprint = "34DB 8D31 F782 2B61 FF06 9503 8B5C 43DC 9105 2999"; } + {fingerprint = "3724 B33B 0B85 F067 814C DA30 FC77 0786 0149 E41E";} + {fingerprint = "A18D 996A D48C 10E8 B985 A219 B43D 995D 2501 1DFA";} + {fingerprint = "34DB 8D31 F782 2B61 FF06 9503 8B5C 43DC 9105 2999";} ]; }; wrmilling = { @@ -27408,7 +27414,7 @@ email = "Winston@Milli.ng"; github = "wrmilling"; githubId = 6162814; - keys = [ { fingerprint = "21E1 6B8D 2EE8 7530 6A6C 9968 D830 77B9 9F8C 6643"; } ]; + keys = [{fingerprint = "21E1 6B8D 2EE8 7530 6A6C 9968 D830 77B9 9F8C 6643";}]; }; wrvsrx = { name = "wrvsrx"; @@ -27537,8 +27543,8 @@ github = "xddxdd"; githubId = 5778879; keys = [ - { fingerprint = "2306 7C13 B6AE BDD7 C0BB 5673 27F3 1700 E751 EC22"; } - { fingerprint = "B195 E8FB 873E 6020 DCD1 C0C6 B50E C319 385F CB0D"; } + {fingerprint = "2306 7C13 B6AE BDD7 C0BB 5673 27F3 1700 E751 EC22";} + {fingerprint = "B195 E8FB 873E 6020 DCD1 C0C6 B50E C319 385F CB0D";} ]; name = "Yuhui Xu"; }; @@ -27587,7 +27593,7 @@ xgwq = { name = "XGWQ"; email = "nixos.xgwq@xnee.net"; - keys = [ { fingerprint = "6489 9EF2 A256 5C04 7426 686C 8337 A748 74EB E129"; } ]; + keys = [{fingerprint = "6489 9EF2 A256 5C04 7426 686C 8337 A748 74EB E129";}]; matrix = "@xgwq:nerdberg.de"; github = "peterablehmann"; githubId = 36541313; @@ -27775,8 +27781,8 @@ github = "yavko"; githubId = 15178513; keys = [ - { fingerprint = "DC05 7015 ECD7 E68A 6426 EFD8 F07D 19A3 2407 F857"; } - { fingerprint = "2874 581F F832 C9E9 AEC6 8D84 E57B F27C 8BB0 80B0"; } + {fingerprint = "DC05 7015 ECD7 E68A 6426 EFD8 F07D 19A3 2407 F857";} + {fingerprint = "2874 581F F832 C9E9 AEC6 8D84 E57B F27C 8BB0 80B0";} ]; }; yayayayaka = { @@ -27797,7 +27803,7 @@ email = "ydlr@ydlr.io"; github = "ydlr"; githubId = 58453832; - keys = [ { fingerprint = "FD0A C425 9EF5 4084 F99F 9B47 2ACC 9749 7C68 FAD4"; } ]; + keys = [{fingerprint = "FD0A C425 9EF5 4084 F99F 9B47 2ACC 9749 7C68 FAD4";}]; }; yechielw = { name = "yechielw"; @@ -27888,7 +27894,7 @@ name = "Yurii Matsiuk"; github = "ymatsiuk"; githubId = 24990891; - keys = [ { fingerprint = "7BB8 84B5 74DA FDB1 E194 ED21 6130 2290 2986 01AA"; } ]; + keys = [{fingerprint = "7BB8 84B5 74DA FDB1 E194 ED21 6130 2290 2986 01AA";}]; }; ymeister = { name = "Yuri Meister"; @@ -27924,7 +27930,7 @@ githubId = 38936915; name = "Yogansh Sharma"; keys = [ - { fingerprint = "D2A8 A906 ACA7 B6D6 575E 9A2F 3A49 5054 6EA6 9E5C"; } + {fingerprint = "D2A8 A906 ACA7 B6D6 575E 9A2F 3A49 5054 6EA6 9E5C";} ]; }; yomaq = { @@ -27964,7 +27970,7 @@ email = "youwenw@gmail.com"; github = "youwen5"; githubId = 38934577; - keys = [ { fingerprint = "8F5E 6C1A F909 76CA 7102 917A 8656 58ED 1FE6 1EC3"; } ]; + keys = [{fingerprint = "8F5E 6C1A F909 76CA 7102 917A 8656 58ED 1FE6 1EC3";}]; }; yrashk = { email = "yrashk@gmail.com"; @@ -28002,7 +28008,7 @@ github = "Yumasi"; githubId = 24368641; name = "Guillaume Pagnoux"; - keys = [ { fingerprint = "85F8 E850 F8F2 F823 F934 535B EC50 6589 9AEA AF4C"; } ]; + keys = [{fingerprint = "85F8 E850 F8F2 F823 F934 535B EC50 6589 9AEA AF4C";}]; }; yunfachi = { email = "yunfachi@gmail.com"; @@ -28045,7 +28051,7 @@ github = "yusdacra"; githubId = 19897088; name = "Yusuf Bera Ertan"; - keys = [ { fingerprint = "9270 66BD 8125 A45B 4AC4 0326 6180 7181 F60E FCB2"; } ]; + keys = [{fingerprint = "9270 66BD 8125 A45B 4AC4 0326 6180 7181 F60E FCB2";}]; }; yusuf-duran = { github = "yusuf-duran"; @@ -28058,13 +28064,13 @@ github = "yuuyins"; githubId = 86538850; name = "Yuu Yin"; - keys = [ { fingerprint = "9F19 3AE8 AA25 647F FC31 46B5 416F 303B 43C2 0AC3"; } ]; + keys = [{fingerprint = "9F19 3AE8 AA25 647F FC31 46B5 416F 303B 43C2 0AC3";}]; }; yvan-sraka = { email = "yvan@sraka.xyz"; github = "yvan-sraka"; githubId = 705213; - keys = [ { fingerprint = "FE9A 953C 97E4 54FE 6598 BFDD A4FB 3EAA 6F45 2379"; } ]; + keys = [{fingerprint = "FE9A 953C 97E4 54FE 6598 BFDD A4FB 3EAA 6F45 2379";}]; matrix = "@/yvan:matrix.org"; name = "Yvan Sraka"; }; @@ -28085,7 +28091,7 @@ github = "yzx9"; githubId = 41458459; name = "Zexin Yuan"; - keys = [ { fingerprint = "FE16 B281 90EF 6C3F F661 6441 C2DD 1916 FE47 1BE2"; } ]; + keys = [{fingerprint = "FE16 B281 90EF 6C3F F661 6441 C2DD 1916 FE47 1BE2";}]; }; zacharyweiss = { name = "Zachary Weiss"; @@ -28157,7 +28163,7 @@ email = "zane@zanevaniperen.com"; github = "vs49688"; githubId = 4423262; - keys = [ { fingerprint = "61AE D40F 368B 6F26 9DAE 3892 6861 6B2D 8AC4 DCC5"; } ]; + keys = [{fingerprint = "61AE D40F 368B 6F26 9DAE 3892 6861 6B2D 8AC4 DCC5";}]; }; zaninime = { email = "francesco@zanini.me"; @@ -28207,7 +28213,7 @@ email = "zacc@ztdp.ca"; github = "zedseven"; githubId = 25164338; - keys = [ { fingerprint = "065A 0A98 FE61 E1C1 41B0 AFE7 64FA BC62 F457 2875"; } ]; + keys = [{fingerprint = "065A 0A98 FE61 E1C1 41B0 AFE7 64FA BC62 F457 2875";}]; }; zelkourban = { name = "zelkourban"; @@ -28226,7 +28232,7 @@ email = "i@zenithal.me"; github = "ZenithalHourlyRate"; githubId = 19512674; - keys = [ { fingerprint = "1127 F188 280A E312 3619 3329 87E1 7EEF 9B18 B6C9"; } ]; + keys = [{fingerprint = "1127 F188 280A E312 3619 3329 87E1 7EEF 9B18 B6C9";}]; }; zeorin = { name = "Xandor Schiefer"; @@ -28234,14 +28240,14 @@ matrix = "@zeorin:matrix.org"; github = "zeorin"; githubId = 1187078; - keys = [ { fingerprint = "863F 093A CF82 D2C8 6FD7 FB74 5E1C 0971 FE4F 665A"; } ]; + keys = [{fingerprint = "863F 093A CF82 D2C8 6FD7 FB74 5E1C 0971 FE4F 665A";}]; }; zeratax = { email = "mail@zera.tax"; github = "zeratax"; githubId = 5024958; name = "Jona Abdinghoff"; - keys = [ { fingerprint = "44F7 B797 9D3A 27B1 89E0 841E 8333 735E 784D F9D4"; } ]; + keys = [{fingerprint = "44F7 B797 9D3A 27B1 89E0 841E 8333 735E 784D F9D4";}]; }; zeri = { name = "zeri"; @@ -28310,8 +28316,8 @@ matrix = "@zimward:zimward.moe"; email = "zimward@zimward.moe"; keys = [ - { fingerprint = "CBF7 FA5E F4B5 8B68 5977 3E3E 4CAC 61D6 A482 FCD9"; } - { fingerprint = "E22F 760E E074 E57A 21CB 1733 8DD2 9BB5 2C25 EA09"; } + {fingerprint = "CBF7 FA5E F4B5 8B68 5977 3E3E 4CAC 61D6 A482 FCD9";} + {fingerprint = "E22F 760E E074 E57A 21CB 1733 8DD2 9BB5 2C25 EA09";} ]; }; Zirconium419122 = { @@ -28356,7 +28362,7 @@ githubId = 44469426; name = "Zoey de Souza Pessanha"; email = "zoey.spessanha@outlook.com"; - keys = [ { fingerprint = "EAA1 51DB 472B 0122 109A CB17 1E1E 889C DBD6 A315"; } ]; + keys = [{fingerprint = "EAA1 51DB 472B 0122 109A CB17 1E1E 889C DBD6 A315";}]; }; zohl = { email = "zohl@fmap.me"; @@ -28456,3 +28462,4 @@ # keep-sorted end } # Keep the list alphabetically sorted. + From b62de8063e0c221ca524fa295e20f89a8b5cb8fb Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 31 Jul 2025 22:40:47 +0000 Subject: [PATCH 069/116] aws-iam-authenticator: 0.7.4 -> 0.7.5 --- pkgs/by-name/aw/aws-iam-authenticator/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/aw/aws-iam-authenticator/package.nix b/pkgs/by-name/aw/aws-iam-authenticator/package.nix index 0fb8190e2697..443879996c7e 100644 --- a/pkgs/by-name/aw/aws-iam-authenticator/package.nix +++ b/pkgs/by-name/aw/aws-iam-authenticator/package.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "aws-iam-authenticator"; - version = "0.7.4"; + version = "0.7.5"; src = fetchFromGitHub { owner = "kubernetes-sigs"; repo = "aws-iam-authenticator"; tag = "v${version}"; - hash = "sha256-TC8FntHiOrYdaVajvkzOK5P13LyOrmaZNsBhqD7bDpw="; + hash = "sha256-FvXK4yrWPtM7uhXb0eJB2Hs1eE/+h3R79xVbHFSX2hQ="; }; - vendorHash = "sha256-XmFskQF8YFL3Ol0mF2wBb0v+2+VrtwBKmfOH8j3IWOs="; + vendorHash = "sha256-fLA+dPAqvCPo8p+NUdmziAhUbi7wQVp2gnzv4493zr8="; ldflags = let From 472875ce6fd460d4b3e85516d3db620ba908b1e5 Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Thu, 31 Jul 2025 12:30:42 +0100 Subject: [PATCH 070/116] nexusmods-app: 0.13.4 -> 0.14.3 https://github.com/Nexus-Mods/NexusMods.App/releases/tag/v0.14.3 --- pkgs/by-name/ne/nexusmods-app/deps.json | 44 +++++++++++------------ pkgs/by-name/ne/nexusmods-app/package.nix | 7 ++-- 2 files changed, 27 insertions(+), 24 deletions(-) diff --git a/pkgs/by-name/ne/nexusmods-app/deps.json b/pkgs/by-name/ne/nexusmods-app/deps.json index f73fca4450dd..5f67beee978b 100644 --- a/pkgs/by-name/ne/nexusmods-app/deps.json +++ b/pkgs/by-name/ne/nexusmods-app/deps.json @@ -361,58 +361,58 @@ }, { "pname": "GameFinder", - "version": "4.7.3", - "hash": "sha256-tUUvWC8/HTFvESqSPN2HMnGkf6OroDBpHCbqo1ThD/8=" + "version": "4.9.0", + "hash": "sha256-cuoMMfh5adQgVh9ZNqZ3mF9bLoArXRuzzZ6TIdFkh+M=" }, { "pname": "GameFinder.Common", - "version": "4.7.3", - "hash": "sha256-lPTPiywObx6SEaBKuL25+eLdfVHuWb1x14Q7aMpXLMQ=" + "version": "4.9.0", + "hash": "sha256-1PXCCLN+TjDtnMZo8NnxE3MKJb1CUkRNYiD1SeWkdTE=" }, { "pname": "GameFinder.Launcher.Heroic", - "version": "4.7.3", - "hash": "sha256-Rp9I0XfW4KhyOSgyPzhR9aHYVcLDwUnpmvTjowviWC8=" + "version": "4.9.0", + "hash": "sha256-g0suL5aVnDXFltlKzuds8PQxVCEtNsNdl52owlSg0jg=" }, { "pname": "GameFinder.RegistryUtils", - "version": "4.7.3", - "hash": "sha256-Z4IbxyMx6apZt9SYfDFvWD8I/qSP2S4kEz8hXym96KY=" + "version": "4.9.0", + "hash": "sha256-mjGWEwpbxNdiljl7x+kWjnVysNBwcHC/zv9Z92HN5CM=" }, { "pname": "GameFinder.StoreHandlers.EADesktop", - "version": "4.7.3", - "hash": "sha256-RbPZayuG9OJXI1aSL2d5vfjfXlEAWFz9aZrXDXX6jhM=" + "version": "4.9.0", + "hash": "sha256-HqkyZh+eys58KZOz8bik4CGtCui9V1aIyQQ6mLhsGgw=" }, { "pname": "GameFinder.StoreHandlers.EGS", - "version": "4.7.3", - "hash": "sha256-99DbRfzESJZAUDd3yREb8M6Mgn8dztNQqBPyR1bsST4=" + "version": "4.9.0", + "hash": "sha256-Dp2EUsWbjXKOfZF8nzWWLESgt7VadvF65iqXE8LZ45g=" }, { "pname": "GameFinder.StoreHandlers.GOG", - "version": "4.7.3", - "hash": "sha256-u0Vm9k8XAkzOdW2U6nzuRPWgMxj3QwkvFc5S4c8A/u4=" + "version": "4.9.0", + "hash": "sha256-F+sAOeSdIV/85mkhWfuszSPnNEOdJB+Wul601rAVaoQ=" }, { "pname": "GameFinder.StoreHandlers.Origin", - "version": "4.7.3", - "hash": "sha256-f/saANmx8zYrZ+G3xbsy2w7mQwC0Jmb5WpUSlZNyzJU=" + "version": "4.9.0", + "hash": "sha256-l1WIlBYoA04eK0k1EU8C46MdEeNXix5MIWCo67Dzhlo=" }, { "pname": "GameFinder.StoreHandlers.Steam", - "version": "4.7.3", - "hash": "sha256-5WtdyR1/xX+Ra5ldlvM0leIgc8gTGaPKAFOC/KTHGk8=" + "version": "4.9.0", + "hash": "sha256-Cw7eMevnbyJz3N4jUfWZ9SsQvMEbtFKHgc6HPnDD3+Y=" }, { "pname": "GameFinder.StoreHandlers.Xbox", - "version": "4.7.3", - "hash": "sha256-Z9RpXomR53mLhD0WH7pCYxmnQIAsGiBVqUgs4I0ZO4w=" + "version": "4.9.0", + "hash": "sha256-/lkl+POQgiwlYxNJ4h4Dtp7w+hI5YUDv1sizAk8FCzc=" }, { "pname": "GameFinder.Wine", - "version": "4.7.3", - "hash": "sha256-PO8aXHEvCxBQq92GyPl3b//s4MTCU7T8mvryS4p0Hsg=" + "version": "4.9.0", + "hash": "sha256-ER82DUiTnm85m65rIK7XbbIiiD2cvuu7cjF133g6yic=" }, { "pname": "Gee.External.Capstone", diff --git a/pkgs/by-name/ne/nexusmods-app/package.nix b/pkgs/by-name/ne/nexusmods-app/package.nix index 783b313bcd8d..d30526f049f7 100644 --- a/pkgs/by-name/ne/nexusmods-app/package.nix +++ b/pkgs/by-name/ne/nexusmods-app/package.nix @@ -23,12 +23,12 @@ let in buildDotnetModule (finalAttrs: { inherit pname; - version = "0.13.4"; + version = "0.14.3"; src = fetchgit { url = "https://github.com/Nexus-Mods/NexusMods.App.git"; rev = "refs/tags/v${finalAttrs.version}"; - hash = "sha256-Ub6HjZChOhRUDYQ2TAnrwOtrW6ahP+k74vCAmLkYABA="; + hash = "sha256-B2gIRVeaTwYEnESMovwEJgdmLwRNA7/nJs7opNhiyyA="; fetchSubmodules = true; }; @@ -147,6 +147,9 @@ buildDotnetModule (finalAttrs: { # Fails attempting to fetch SMAPI version data from github: # https://github.com/erri120/smapi-versions/raw/main/data/game-smapi-versions.json "NexusMods.Games.StardewValley.Tests.SMAPIGameVersionDiagnosticEmitterTests.Test_TryGetLastSupportedSMAPIVersion" + + # Fails attempting to fetch game info from NexusMods API + "NexusMods.Networking.NexusWebApi.Tests.LocalMappingCacheTests.Test_Parse" ] ++ lib.optionals (!_7zz.meta.unfree) [ "NexusMods.Games.FOMOD.Tests.FomodXmlInstallerTests.InstallsFilesSimple_UsingRar" From 6393db101b553f17d5cc6a333d8da842318c1a7b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 00:20:22 +0000 Subject: [PATCH 071/116] automatic-timezoned: 2.0.83 -> 2.0.84 --- pkgs/by-name/au/automatic-timezoned/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/au/automatic-timezoned/package.nix b/pkgs/by-name/au/automatic-timezoned/package.nix index ea0c8ae11138..a92ac06c2174 100644 --- a/pkgs/by-name/au/automatic-timezoned/package.nix +++ b/pkgs/by-name/au/automatic-timezoned/package.nix @@ -6,16 +6,16 @@ rustPlatform.buildRustPackage rec { pname = "automatic-timezoned"; - version = "2.0.83"; + version = "2.0.84"; src = fetchFromGitHub { owner = "maxbrunet"; repo = "automatic-timezoned"; rev = "v${version}"; - sha256 = "sha256-jrRuQXzx1dBIjXswVFq5szydj2GNEBPgpGj7K1vvQkE="; + sha256 = "sha256-Ul9bzMC8MfbfE4PDi3O8mhsImbspOcBDqTZOoVVeP/0="; }; - cargoHash = "sha256-itZPo0GuTdWr2NYBluvf5/jQlwGVDZsPurIfftL94gk="; + cargoHash = "sha256-GroKztTpPWTw/tyrPWfld1ix0BnkjphwHM3J/17byqM="; meta = { description = "Automatically update system timezone based on location"; From c082ee6f79f2d30dec10df2b7c515f84d979bca8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 00:26:33 +0000 Subject: [PATCH 072/116] grafanaPlugins.grafana-lokiexplore-app: 1.0.22 -> 1.0.23 --- .../grafana/plugins/grafana-lokiexplore-app/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/monitoring/grafana/plugins/grafana-lokiexplore-app/default.nix b/pkgs/servers/monitoring/grafana/plugins/grafana-lokiexplore-app/default.nix index 8bf7bbb6a2c9..d37ef9168ddc 100644 --- a/pkgs/servers/monitoring/grafana/plugins/grafana-lokiexplore-app/default.nix +++ b/pkgs/servers/monitoring/grafana/plugins/grafana-lokiexplore-app/default.nix @@ -2,8 +2,8 @@ grafanaPlugin { pname = "grafana-lokiexplore-app"; - version = "1.0.22"; - zipHash = "sha256-y1WJ1RxUbJSsiSApz3xvrARefNnXdZxDVfzeGfDZbFo="; + version = "1.0.23"; + zipHash = "sha256-N2YIZXqHR7/f2W3FI1Jhjf940Mq5xs0zuXCgrYPa3Fo="; meta = with lib; { description = "Browse Loki logs without the need for writing complex queries"; license = licenses.agpl3Only; From 1268c29215e3576995bf76ab53d0d18bd083be2f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 00:35:06 +0000 Subject: [PATCH 073/116] sane-airscan: 0.99.35 -> 0.99.36 --- pkgs/by-name/sa/sane-airscan/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/sa/sane-airscan/package.nix b/pkgs/by-name/sa/sane-airscan/package.nix index dd37d24c4f07..398ea6f01a37 100644 --- a/pkgs/by-name/sa/sane-airscan/package.nix +++ b/pkgs/by-name/sa/sane-airscan/package.nix @@ -15,7 +15,7 @@ }: stdenv.mkDerivation rec { pname = "sane-airscan"; - version = "0.99.35"; + version = "0.99.36"; nativeBuildInputs = [ meson @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { owner = "alexpevzner"; repo = "sane-airscan"; rev = version; - sha256 = "sha256-sWBqYoeCEAIM5Gug+w4b4WZ8SwFrywqJVzo0nt69diA="; + sha256 = "sha256-vpTUZVD5ONcQeDnjPmQDY9Qf/bmDqZMnxA+I8ALOB7Y="; }; meta = with lib; { From 7401ccc86c63a940da801cc1a0c23e24ce1e53bc Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 00:54:19 +0000 Subject: [PATCH 074/116] darkly-qt5: 0.5.21 -> 0.5.22 --- pkgs/by-name/da/darkly/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/da/darkly/package.nix b/pkgs/by-name/da/darkly/package.nix index c7644c91217a..e977ce2c0af5 100644 --- a/pkgs/by-name/da/darkly/package.nix +++ b/pkgs/by-name/da/darkly/package.nix @@ -13,13 +13,13 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "darkly-qt${qtMajorVersion}"; - version = "0.5.21"; + version = "0.5.22"; src = fetchFromGitHub { owner = "Bali10050"; repo = "Darkly"; tag = "v${finalAttrs.version}"; - hash = "sha256-1WErpDYTlMW/889Efe3OUM3uwt5w+EttjOGoBolBZvE="; + hash = "sha256-m3UMp3dJfGptOR8WDGYgaHfax7Wpad0wKfOI8xZLC1s="; }; nativeBuildInputs = [ From d131f4bdf515826127d99c1356d9e9d154dd78a6 Mon Sep 17 00:00:00 2001 From: m3l6h <8094643+M3L6H@users.noreply.github.com> Date: Thu, 31 Jul 2025 17:25:32 -0500 Subject: [PATCH 075/116] vimPlugins.blink-cmp-words: init at 2025-06-26 --- pkgs/applications/editors/vim/plugins/generated.nix | 13 +++++++++++++ pkgs/applications/editors/vim/plugins/overrides.nix | 4 ++++ .../editors/vim/plugins/vim-plugin-names | 1 + 3 files changed, 18 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/generated.nix b/pkgs/applications/editors/vim/plugins/generated.nix index ffc45cd3277f..98093b77d678 100644 --- a/pkgs/applications/editors/vim/plugins/generated.nix +++ b/pkgs/applications/editors/vim/plugins/generated.nix @@ -1596,6 +1596,19 @@ final: prev: { meta.hydraPlatforms = [ ]; }; + blink-cmp-words = buildVimPlugin { + pname = "blink-cmp-words"; + version = "2025-06-26"; + src = fetchFromGitHub { + owner = "archie-judd"; + repo = "blink-cmp-words"; + rev = "81224ec2eb72115c84bb19ae566ef25083dbfed2"; + sha256 = "1561sxrz3h10qdxn4a1aqlvbnih4v5g5kvs5mwipjnfh8n4wcnnb"; + }; + meta.homepage = "https://github.com/archie-judd/blink-cmp-words/"; + meta.hydraPlatforms = [ ]; + }; + blink-compat = buildVimPlugin { pname = "blink.compat"; version = "2025-05-28"; diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index 78e4de437b10..391c59aefa6a 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -333,6 +333,10 @@ in dependencies = [ self.blink-cmp ]; }; + blink-cmp-words = super.blink-cmp-words.overrideAttrs { + dependencies = [ self.blink-cmp ]; + }; + bluloco-nvim = super.bluloco-nvim.overrideAttrs { dependencies = [ self.lush-nvim ]; }; diff --git a/pkgs/applications/editors/vim/plugins/vim-plugin-names b/pkgs/applications/editors/vim/plugins/vim-plugin-names index 615a6932b7a3..4562f5a2dc3f 100644 --- a/pkgs/applications/editors/vim/plugins/vim-plugin-names +++ b/pkgs/applications/editors/vim/plugins/vim-plugin-names @@ -121,6 +121,7 @@ https://github.com/Kaiser-Yang/blink-cmp-dictionary/,HEAD, https://github.com/Kaiser-Yang/blink-cmp-git/,HEAD, https://github.com/alexandre-abrioux/blink-cmp-npm.nvim/,HEAD, https://github.com/ribru17/blink-cmp-spell/,HEAD, +https://github.com/archie-judd/blink-cmp-words/,HEAD, https://github.com/fang2hou/blink-copilot/,HEAD, https://github.com/moyiz/blink-emoji.nvim/,HEAD, https://github.com/MahanRahmati/blink-nerdfont.nvim/,HEAD, From 625655c9891e6fb702f09d3f260a7bc5affce530 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 01:40:55 +0000 Subject: [PATCH 076/116] mint-y-icons: 1.8.4 -> 1.8.5 https://github.com/linuxmint/mint-y-icons/compare/1.8.4...1.8.5 --- pkgs/by-name/mi/mint-y-icons/package.nix | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/pkgs/by-name/mi/mint-y-icons/package.nix b/pkgs/by-name/mi/mint-y-icons/package.nix index 4a49fc1acb75..211164c7da71 100644 --- a/pkgs/by-name/mi/mint-y-icons/package.nix +++ b/pkgs/by-name/mi/mint-y-icons/package.nix @@ -10,13 +10,13 @@ stdenvNoCC.mkDerivation rec { pname = "mint-y-icons"; - version = "1.8.4"; + version = "1.8.5"; src = fetchFromGitHub { owner = "linuxmint"; repo = "mint-y-icons"; rev = version; - hash = "sha256-ftiV9l7hTmWdtw36Z2GKpJZuRwQQ3MQWYIgb62VBde0="; + hash = "sha256-p+VnEsmFcPyyLLh2bC4zKPUaa/qQzZdx9DE9y+M3EMI="; }; propagatedBuildInputs = [ @@ -31,12 +31,6 @@ stdenvNoCC.mkDerivation rec { dontDropIconThemeCache = true; - postPatch = '' - # Breaks gtk-update-icon-cache - # https://github.com/linuxmint/mint-y-icons/issues/494 - find usr/share/icons/Mint-Y/apps/ -type l -name "1AC2_Battle.net Launcher.0.png" -delete - ''; - installPhase = '' runHook preInstall From f8a5b255aff6e28af1f29feccfb45732a219cd6f Mon Sep 17 00:00:00 2001 From: Daniel Hill Date: Fri, 1 Aug 2025 14:39:07 +1200 Subject: [PATCH 077/116] pureref: force xcb mode for wayland pureref doesn't ship with a wayland backend and throws and error trying to launch, this allows it to use XWayland in such situations. --- pkgs/by-name/pu/pureref/package.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/by-name/pu/pureref/package.nix b/pkgs/by-name/pu/pureref/package.nix index 069ff4f7e3a3..28f7cb01b497 100644 --- a/pkgs/by-name/pu/pureref/package.nix +++ b/pkgs/by-name/pu/pureref/package.nix @@ -1,6 +1,7 @@ { lib, appimageTools, + makeWrapper, runCommand, curl, gnugrep, @@ -32,11 +33,14 @@ appimageTools.wrapType1 { pname = "pureref"; inherit version; + nativeBuildInputs = [ makeWrapper ]; + src = "${deb}/usr/bin/PureRef"; extraInstallCommands = '' mv $out/bin/pureref $out/bin/PureRef cp -r ${deb}/usr/share $out + wrapProgram $out/bin/PureRef --set QT_QPA_PLATFORM xcb ''; meta = with lib; { From 7f82f828088a0b4a7d21c317d83ca966327f2a5e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 03:34:37 +0000 Subject: [PATCH 078/116] python3Packages.linode-api: 5.33.0 -> 5.33.1 --- pkgs/development/python-modules/linode-api/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/linode-api/default.nix b/pkgs/development/python-modules/linode-api/default.nix index faf16e8e3dde..a5888b324524 100644 --- a/pkgs/development/python-modules/linode-api/default.nix +++ b/pkgs/development/python-modules/linode-api/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "linode-api"; - version = "5.33.0"; + version = "5.33.1"; pyproject = true; disabled = pythonOlder "3.9"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "linode"; repo = "python-linode-api"; tag = "v${version}"; - hash = "sha256-XCmW9rpCpJhEMgaARduQ5JqE14oQNRZv3c9shvZp3+k="; + hash = "sha256-RFnsz04Z3oB86VPzClYdQfgup27FNhSwvR0Q4hJclE8="; }; build-system = [ setuptools ]; From fa8716cecfa7153f27e5cdce50929af89025bdf9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 04:15:56 +0000 Subject: [PATCH 079/116] vacuum-go: 0.17.6 -> 0.17.7 --- pkgs/by-name/va/vacuum-go/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/va/vacuum-go/package.nix b/pkgs/by-name/va/vacuum-go/package.nix index f369e7f6d1f4..350ce8e238c5 100644 --- a/pkgs/by-name/va/vacuum-go/package.nix +++ b/pkgs/by-name/va/vacuum-go/package.nix @@ -7,17 +7,17 @@ buildGoModule (finalAttrs: { pname = "vacuum-go"; - version = "0.17.6"; + version = "0.17.7"; src = fetchFromGitHub { owner = "daveshanley"; repo = "vacuum"; # using refs/tags because simple version gives: 'the given path has multiple possibilities' error tag = "v${finalAttrs.version}"; - hash = "sha256-riTyTOx8SoyIaXtL2qbL7AZO2sPcCIi6DJ64OFMNAWE="; + hash = "sha256-RkJOBiannG98bqc3GdBzRGvDATjX0gtgn8PCdIIBdBc="; }; - vendorHash = "sha256-f+frQCCk/9+9dilSt13yk4U3c7D/r5XAwlXznyMhqM4="; + vendorHash = "sha256-6tBKlJa7fec0jc7/s1A6h86SwlZR7HzGes7hPEuwNmo="; env.CGO_ENABLED = 0; ldflags = [ From 5a200243f66bb3b4493baf28291f58876558c8eb Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 04:28:19 +0000 Subject: [PATCH 080/116] zsh-forgit: 25.07.0 -> 25.08.0 --- pkgs/by-name/zs/zsh-forgit/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/zs/zsh-forgit/package.nix b/pkgs/by-name/zs/zsh-forgit/package.nix index a652f9996ab8..bef7658244c7 100644 --- a/pkgs/by-name/zs/zsh-forgit/package.nix +++ b/pkgs/by-name/zs/zsh-forgit/package.nix @@ -15,13 +15,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "zsh-forgit"; - version = "25.07.0"; + version = "25.08.0"; src = fetchFromGitHub { owner = "wfxr"; repo = "forgit"; tag = finalAttrs.version; - hash = "sha256-h9li2nwKG6SnOQntWZpdeBbU3RrwO4+4yO7tAwuOwhE="; + hash = "sha256-45NeIRSTNiCqctdwBaS/qOeOI/8f4L+KVI/I6grYm+0="; }; strictDeps = true; From fe42cbae84384f2d7bfb6ed17ba163259d55c280 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 06:15:51 +0000 Subject: [PATCH 081/116] justbuild: 1.6.1 -> 1.6.2 --- pkgs/by-name/ju/justbuild/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ju/justbuild/package.nix b/pkgs/by-name/ju/justbuild/package.nix index 3399824bee11..97327fb6c0ce 100644 --- a/pkgs/by-name/ju/justbuild/package.nix +++ b/pkgs/by-name/ju/justbuild/package.nix @@ -33,13 +33,13 @@ let in stdenv.mkDerivation rec { pname = "justbuild"; - version = "1.6.1"; + version = "1.6.2"; src = fetchFromGitHub { owner = "just-buildsystem"; repo = "justbuild"; rev = "refs/tags/v${version}"; - hash = "sha256-WtdzrtTqeDN0N50KLry95ijYfCP8xIY+ZSRtVbWLw/g="; + hash = "sha256-C2Tv/R8bIKAG0E1vcZyS2fs2Pr26+luinPsjCqbboR0="; }; bazelapi = fetchurl { From 1837472ab18682061d652f63004352d97356faf7 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 06:54:56 +0000 Subject: [PATCH 082/116] ddns-go: 6.12.0 -> 6.12.1 --- pkgs/by-name/dd/ddns-go/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/dd/ddns-go/package.nix b/pkgs/by-name/dd/ddns-go/package.nix index 18b228f77cbc..f78d77ddfaeb 100644 --- a/pkgs/by-name/dd/ddns-go/package.nix +++ b/pkgs/by-name/dd/ddns-go/package.nix @@ -6,13 +6,13 @@ buildGoModule rec { pname = "ddns-go"; - version = "6.12.0"; + version = "6.12.1"; src = fetchFromGitHub { owner = "jeessy2"; repo = "ddns-go"; rev = "v${version}"; - hash = "sha256-6syI3XQNiERqxHUWmquNGHyKHymVkVgD8Yh2iZoek4g="; + hash = "sha256-7NDuC7MshPXEekEPo4DL2ww6HfWPdHhPa4a979a4NJY="; }; vendorHash = "sha256-0HH5KkMVQzD/xyaue9Sh6CE5dI/aZJMwei7ynhzp9dc="; From 06a924cc79de064ba18597ecab92b00853f2959f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 07:14:05 +0000 Subject: [PATCH 083/116] whitesur-gtk-theme: 2025-06-14 -> 2025-07-24 --- pkgs/by-name/wh/whitesur-gtk-theme/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/wh/whitesur-gtk-theme/package.nix b/pkgs/by-name/wh/whitesur-gtk-theme/package.nix index 274b4dfe7147..4e8921fe4c6f 100644 --- a/pkgs/by-name/wh/whitesur-gtk-theme/package.nix +++ b/pkgs/by-name/wh/whitesur-gtk-theme/package.nix @@ -94,13 +94,13 @@ lib.checkListOfEnum "${pname}: window control buttons variants" [ "normal" "alt" stdenv.mkDerivation rec { pname = "whitesur-gtk-theme"; - version = "2025-06-14"; + version = "2025-07-24"; src = fetchFromGitHub { owner = "vinceliuice"; repo = "whitesur-gtk-theme"; rev = version; - hash = "sha256-+K2HAnpcCqfSw3WmiklMPnJTDuCSBiWe3aGNq2mnFLA="; + hash = "sha256-tuon9XxMdrz9XNTp50sbss2gtx6H9hEZh8t2jSoqx28="; }; nativeBuildInputs = [ From 0c3efa0e578b9ccf0bb90379ebd3d0e5e91ed84c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 07:17:21 +0000 Subject: [PATCH 084/116] gotlsaflare: 2.7.2 -> 2.7.3 --- pkgs/by-name/go/gotlsaflare/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/go/gotlsaflare/package.nix b/pkgs/by-name/go/gotlsaflare/package.nix index d331b3933537..0f2b16b861f6 100644 --- a/pkgs/by-name/go/gotlsaflare/package.nix +++ b/pkgs/by-name/go/gotlsaflare/package.nix @@ -8,16 +8,16 @@ buildGoModule (finalAttrs: { pname = "gotlsaflare"; - version = "2.7.2"; + version = "2.7.3"; src = fetchFromGitHub { owner = "Stenstromen"; repo = "gotlsaflare"; tag = "v${finalAttrs.version}"; - hash = "sha256-MryKBTFTdjoi8Bn39kCcyCVsj/C/lPJUaEgliLkHXuQ="; + hash = "sha256-OmjbXek62i0CrbwIXR13tDrZlWPMwO10ciUQ5kTd3gU="; }; - vendorHash = "sha256-ZC1OD7TYE0CL8Vsopgeh+K13Rcm0mI9I2BpdDNpDSWE="; + vendorHash = "sha256-BAN2KzzmAk8dYvD1Uw94junawlvmVbSx6AQ7flxn18g="; nativeBuildInputs = [ installShellFiles ]; From e03feee6e00e6867b243a1138565a4d841e1c2cf Mon Sep 17 00:00:00 2001 From: eyjhb Date: Thu, 31 Jul 2025 09:54:41 +0200 Subject: [PATCH 085/116] go-ios: patch paths --- pkgs/by-name/go/go-ios/package.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkgs/by-name/go/go-ios/package.nix b/pkgs/by-name/go/go-ios/package.nix index 1d73a22ede69..7c23051c394a 100644 --- a/pkgs/by-name/go/go-ios/package.nix +++ b/pkgs/by-name/go/go-ios/package.nix @@ -5,6 +5,8 @@ nix-update-script, pkg-config, libusb1, + iproute2, + net-tools, }: buildGoModule rec { @@ -25,6 +27,14 @@ buildGoModule rec { "restapi" ]; + postPatch = '' + substituteInPlace ncm/linux_commands.go \ + --replace-fail "ip " "${lib.getExe' iproute2 "ip"} " + + substituteInPlace ios/tunnel/tunnel.go \ + --replace-fail "ifconfig" "${lib.getExe' net-tools "ifconfig"}" + ''; + nativeBuildInputs = [ pkg-config ]; From 9d7a094674a81748f679040bfc285dbc5f870580 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 07:43:58 +0000 Subject: [PATCH 086/116] media-downloader: 5.4.1 -> 5.4.2 --- pkgs/by-name/me/media-downloader/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/me/media-downloader/package.nix b/pkgs/by-name/me/media-downloader/package.nix index ce608a4a650a..f7846ded9061 100644 --- a/pkgs/by-name/me/media-downloader/package.nix +++ b/pkgs/by-name/me/media-downloader/package.nix @@ -16,13 +16,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "media-downloader"; - version = "5.4.1"; + version = "5.4.2"; src = fetchFromGitHub { owner = "mhogomchungu"; repo = "media-downloader"; rev = finalAttrs.version; - hash = "sha256-J9TXjN/u/I8m5Boa8SE0uI5iExVEm3yCRQ6c0fzW+jM="; + hash = "sha256-QW6wPljY259baHHucJjIBihinocafNALfLVN4s/gN1Q="; }; nativeBuildInputs = [ From a1dbbd6f06b507eeca2c0944b549755c491fc071 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 08:31:28 +0000 Subject: [PATCH 087/116] sdl_gamecontrollerdb: 0-unstable-2025-07-18 -> 0-unstable-2025-07-28 --- pkgs/by-name/sd/sdl_gamecontrollerdb/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/sd/sdl_gamecontrollerdb/package.nix b/pkgs/by-name/sd/sdl_gamecontrollerdb/package.nix index dcfa2604ef00..0beedf429fbb 100644 --- a/pkgs/by-name/sd/sdl_gamecontrollerdb/package.nix +++ b/pkgs/by-name/sd/sdl_gamecontrollerdb/package.nix @@ -7,13 +7,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "sdl_gamecontrollerdb"; - version = "0-unstable-2025-07-18"; + version = "0-unstable-2025-07-28"; src = fetchFromGitHub { owner = "mdqinc"; repo = "SDL_GameControllerDB"; - rev = "dce2d3593c6a96a57716d13d58aa3b1d4965fe6f"; - hash = "sha256-a1466lU8pCQJcJSIe3cEplUcbVnYoABvnm/QQhwsuDw="; + rev = "34765aa1de21323a873ab107a2a25e269e86b2e8"; + hash = "sha256-K3XeSs6psR8RnDiYAKrVbx3KWQuJcD3RyZpOl+dn5Qw="; }; dontBuild = true; From 2b683f879e1ddf3eaf20298cf2dfbbc9e1323f2c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 09:04:43 +0000 Subject: [PATCH 088/116] phraze: 0.3.23 -> 0.3.24 --- pkgs/by-name/ph/phraze/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ph/phraze/package.nix b/pkgs/by-name/ph/phraze/package.nix index f2b16f0f1d9f..47125020d996 100644 --- a/pkgs/by-name/ph/phraze/package.nix +++ b/pkgs/by-name/ph/phraze/package.nix @@ -10,18 +10,18 @@ rustPlatform.buildRustPackage rec { pname = "phraze"; - version = "0.3.23"; + version = "0.3.24"; src = fetchFromGitHub { owner = "sts10"; repo = "phraze"; rev = "v${version}"; - hash = "sha256-CQhzH6x8Fxx0ynHbLh8FTY7urbiXHrvTbMh+/TAwS2A="; + hash = "sha256-UURzpG5YZ7R/6vVOB/gtbFNNsVnOAsRwioKRLFxOH4c="; }; doCheck = true; - cargoHash = "sha256-d4qj4rvH5CyHTH3RWDV6ADSGK/kz6yQLp3JjQdb6Wyo="; + cargoHash = "sha256-Uxbi/spmsPmxUNuLvEAWD1QLLBc/3zU/JoNyB7Dvlac="; nativeBuildInputs = [ installShellFiles ]; From e7ee7ed79fe755f04034081d17952567247e660c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 09:34:45 +0000 Subject: [PATCH 089/116] terraform-providers.routeros: 1.85.3 -> 1.86.1 --- .../networking/cluster/terraform-providers/providers.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 0fe351e2637f..d4b22ac878bd 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -1138,13 +1138,13 @@ "vendorHash": "sha256-75GQmp/ybD+VugrrB8qTbP3OPHy3eyBGe5u7CM7CRcc=" }, "routeros": { - "hash": "sha256-ciQsBvpX6gWnDPt9O1SGrVVgNCvAHBPCaLfVlPxrSAY=", + "hash": "sha256-1qdq09QFijxQDUaoPJwJB4F5aZ0AHXJSGndcdR9iqOs=", "homepage": "https://registry.terraform.io/providers/terraform-routeros/routeros", "owner": "terraform-routeros", "repo": "terraform-provider-routeros", - "rev": "v1.85.3", + "rev": "v1.86.1", "spdx": "MPL-2.0", - "vendorHash": "sha256-lurBPksF2+SPraQ6KRr4EmI8rR7lY9BN+LZY8pKHjYU=" + "vendorHash": "sha256-et1xqcaCKTRz9bJjTlRnxhXBoc6PaeSwJgBI4pAzcdg=" }, "rundeck": { "hash": "sha256-g8unbz8+UGLiAOJju6E2bLkygvZgHkv173PdMDefmrc=", From d820e476f188a06dc0030270e7a4a46b9423e3f9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 10:27:42 +0000 Subject: [PATCH 090/116] openapi-python-client: 0.25.2 -> 0.25.3 --- pkgs/by-name/op/openapi-python-client/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/op/openapi-python-client/package.nix b/pkgs/by-name/op/openapi-python-client/package.nix index e37ceb99d18b..a5d6bbb76aac 100644 --- a/pkgs/by-name/op/openapi-python-client/package.nix +++ b/pkgs/by-name/op/openapi-python-client/package.nix @@ -11,7 +11,7 @@ python3Packages.buildPythonApplication rec { pname = "openapi-python-client"; - version = "0.25.2"; + version = "0.25.3"; pyproject = true; src = fetchFromGitHub { @@ -19,7 +19,7 @@ python3Packages.buildPythonApplication rec { owner = "openapi-generators"; repo = "openapi-python-client"; tag = "v${version}"; - hash = "sha256-B+GVv1Q/OwbtHDMGNYkPkZgvHqncrAkdvZ6ECwhIbLE="; + hash = "sha256-6lGzAMt7c811u3Zooyn+HftoJNK3DHyjSO6lnOoDUus="; }; nativeBuildInputs = [ From a62c58944721a30b02b0f80d2fccc437c297e2d9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 10:42:11 +0000 Subject: [PATCH 091/116] moar: 1.32.5 -> 1.33.0 --- pkgs/by-name/mo/moar/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/mo/moar/package.nix b/pkgs/by-name/mo/moar/package.nix index 276eee36acd4..b231f30b2c5b 100644 --- a/pkgs/by-name/mo/moar/package.nix +++ b/pkgs/by-name/mo/moar/package.nix @@ -7,16 +7,16 @@ buildGoModule rec { pname = "moar"; - version = "1.32.5"; + version = "1.33.0"; src = fetchFromGitHub { owner = "walles"; repo = "moar"; rev = "v${version}"; - hash = "sha256-EuVEpCHfyvd6D/eb1NGFS1ENLyX8u/m2FHrgZcbI3So="; + hash = "sha256-+06cup9iG+iMyluQPzUQ7vrnFHoeU4KNHGra3AsRRw0="; }; - vendorHash = "sha256-eKL6R2Xmj6JOwXGuJJdSGwobEzDzZ0FUD8deO2d1unc="; + vendorHash = "sha256-ComKeqnw1PvDaCRVXfInRjSzhyZWGkD/hp5piwhwxds="; nativeBuildInputs = [ installShellFiles ]; From 647d687dd646c713744906d88f3a17cc0497f012 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 11:15:10 +0000 Subject: [PATCH 092/116] python3Packages.torchprofile: 0.0.3 -> 0.0.4 --- pkgs/development/python-modules/torchprofile/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/torchprofile/default.nix b/pkgs/development/python-modules/torchprofile/default.nix index 2326d76c69c4..c4cee730aec0 100644 --- a/pkgs/development/python-modules/torchprofile/default.nix +++ b/pkgs/development/python-modules/torchprofile/default.nix @@ -10,14 +10,14 @@ buildPythonPackage rec { pname = "torchprofile"; - version = "0.0.3"; + version = "0.0.4"; pyproject = true; src = fetchFromGitHub { owner = "zhijian-liu"; repo = "torchprofile"; tag = "v${version}"; - hash = "sha256-6vxZHQwBjKpy288wcANdJ9gmvIOZloLv+iN76TtqYAI="; + hash = "sha256-ynRrGHzroyv8T8fggJAag7u6XBOx+uN49HSIe46Bcek="; }; build-system = [ @@ -39,7 +39,7 @@ buildPythonPackage rec { ]; meta = { - changelog = "https://github.com/zhijian-liu/torchprofile/releases/tag/v${version}"; + changelog = "https://github.com/zhijian-liu/torchprofile/releases/tag/${src.tag}"; description = "General and accurate MACs / FLOPs profiler for PyTorch models"; homepage = "https://github.com/zhijian-liu/torchprofile"; license = lib.licenses.mit; From 56e020e29a37ad18c858fbae81e0003ad1ea55e2 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 11:29:32 +0000 Subject: [PATCH 093/116] python3Packages.succulent: 0.4.1 -> 0.4.2 --- pkgs/development/python-modules/succulent/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/succulent/default.nix b/pkgs/development/python-modules/succulent/default.nix index 15648e91f617..09fa33ea2d2b 100644 --- a/pkgs/development/python-modules/succulent/default.nix +++ b/pkgs/development/python-modules/succulent/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "succulent"; - version = "0.4.1"; + version = "0.4.2"; pyproject = true; disabled = pythonOlder "3.8"; @@ -23,7 +23,7 @@ buildPythonPackage rec { owner = "firefly-cpp"; repo = "succulent"; tag = version; - hash = "sha256-lmN31Xdp1PCLhgInGxvTKTLBXFpz3NnHYSFjKQfRfec="; + hash = "sha256-3cqU1iYxvMyx0hCVl6r4RZARpsWNckXZgeBNq0kokuw="; }; pythonRelaxDeps = [ From 980fdb32cb027435c9fff902f712b3df3508d2a7 Mon Sep 17 00:00:00 2001 From: Binh Nguyen Date: Fri, 1 Aug 2025 21:35:40 +1000 Subject: [PATCH 094/116] xenia-canary: 0-unstable-2025-07-27 -> 0-unstable-2025-08-01 --- pkgs/by-name/xe/xenia-canary/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/xe/xenia-canary/package.nix b/pkgs/by-name/xe/xenia-canary/package.nix index e59bf3884350..540db1ad546b 100644 --- a/pkgs/by-name/xe/xenia-canary/package.nix +++ b/pkgs/by-name/xe/xenia-canary/package.nix @@ -25,8 +25,8 @@ llvmPackages_20.stdenv.mkDerivation { owner = "xenia-canary"; repo = "xenia-canary"; fetchSubmodules = true; - rev = "c3e4a93c0a59281cb53c6991c2c4b67e224a37d8"; - hash = "sha256-p4XZwmehboq7CZnVO4J+QzyTNIjvJEplBfVPPvzVepw="; + rev = "4e8e789876329e03697d1542718fbc21b5053aa5"; + hash = "sha256-sfNkMeOEvmBbFv2mDnKs3UGPxFRvts9wcgcA23endUI="; }; dontConfigure = true; @@ -59,8 +59,8 @@ llvmPackages_20.stdenv.mkDerivation { buildPhase = '' runHook preBuild - python3 xenia-build setup - python3 xenia-build build --config=release + python3 xenia-build.py setup + python3 xenia-build.py build --config=release runHook postBuild ''; From ed82d6799144b0ed6a5bf09aab07527bb64609ca Mon Sep 17 00:00:00 2001 From: phaer Date: Fri, 1 Aug 2025 13:39:11 +0200 Subject: [PATCH 095/116] backblaze-b2: Add missing checkInput tenacity Tests failed for me on x86_64-linux before this change since #429515. Adding the missing module lets them pass again. --- pkgs/by-name/ba/backblaze-b2/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/ba/backblaze-b2/package.nix b/pkgs/by-name/ba/backblaze-b2/package.nix index c4ee5eb0aff2..4fc25ff8421c 100644 --- a/pkgs/by-name/ba/backblaze-b2/package.nix +++ b/pkgs/by-name/ba/backblaze-b2/package.nix @@ -52,6 +52,7 @@ python3Packages.buildPythonApplication rec { pexpect pytestCheckHook pytest-xdist + tenacity ]; preCheck = '' From 518cb6ff8c31b3d794cbc01ed04001872ef2979d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 11:53:26 +0000 Subject: [PATCH 096/116] compare50: 1.2.7 -> 1.2.13 --- pkgs/by-name/co/compare50/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/co/compare50/package.nix b/pkgs/by-name/co/compare50/package.nix index 0981bb9454b7..e1fa66017524 100644 --- a/pkgs/by-name/co/compare50/package.nix +++ b/pkgs/by-name/co/compare50/package.nix @@ -7,14 +7,14 @@ python3Packages.buildPythonApplication rec { pname = "compare50"; - version = "1.2.7"; + version = "1.2.13"; pyproject = true; src = fetchFromGitHub { owner = "cs50"; repo = "compare50"; tag = "v${version}"; - hash = "sha256-T7ts/9Uux2gVhh5EGv8PRh9cbCQDbLBYD06sWqNSvLU="; + hash = "sha256-qRESVE9242Leo6js+YrRrLff7C3IjWFKSN2/GsC/8VA="; }; postPatch = '' @@ -65,7 +65,7 @@ python3Packages.buildPythonApplication rec { description = "Tool for detecting similarity in code supporting over 300 languages"; homepage = "https://cs50.readthedocs.io/projects/compare50/en/latest/"; downloadPage = "https://github.com/cs50/compare50"; - changelog = "https://github.com/cs50/compare50/releases/tag/v${version}"; + changelog = "https://github.com/cs50/compare50/releases/tag/${src.tag}"; license = lib.licenses.gpl3Only; platforms = lib.platforms.unix; maintainers = with lib.maintainers; [ ethancedwards8 ]; From 784b2d38e8f42ce4403ebbbb7f0ac2518b95aa9c Mon Sep 17 00:00:00 2001 From: Yiyu Zhou Date: Fri, 1 Aug 2025 05:01:37 -0700 Subject: [PATCH 097/116] zuse: init at 1.0 --- pkgs/by-name/zu/zuse/package.nix | 36 ++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pkgs/by-name/zu/zuse/package.nix diff --git a/pkgs/by-name/zu/zuse/package.nix b/pkgs/by-name/zu/zuse/package.nix new file mode 100644 index 000000000000..af031f981148 --- /dev/null +++ b/pkgs/by-name/zu/zuse/package.nix @@ -0,0 +1,36 @@ +{ + lib, + buildGoModule, + fetchFromGitHub, + nix-update-script, +}: + +buildGoModule (finalAttrs: { + pname = "zuse"; + version = "1.0"; + + src = fetchFromGitHub { + owner = "babycommando"; + repo = "zuse"; + tag = "v${finalAttrs.version}"; + hash = "sha256-zKAAHvbaR1HnRe6CmAEi/6iAOHCcbGVS1/jSrQwksRk="; + }; + + vendorHash = "sha256-P7T244d1OpFDqwRu3gdEI1OAqq9EbpL1YO2mlTw0Jew="; + + ldflags = [ + "-s" + "-w" + ]; + + passthru.updateScript = nix-update-script { }; + + meta = { + description = "IRC client for the terminal made in Go with Bubbletea"; + homepage = "https://github.com/babycommando/zuse"; + changelog = "https://github.com/babycommando/zuse/releases/tag/${finalAttrs.src.tag}"; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ yiyu ]; + mainProgram = "zuse"; + }; +}) From 13ba1ff20b404b30e4142b435981d15aca0ff09f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 12:15:36 +0000 Subject: [PATCH 098/116] cargo-dist: 0.28.2 -> 0.29.0 --- pkgs/by-name/ca/cargo-dist/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ca/cargo-dist/package.nix b/pkgs/by-name/ca/cargo-dist/package.nix index 1d678173ea17..bf6d9513cf9a 100644 --- a/pkgs/by-name/ca/cargo-dist/package.nix +++ b/pkgs/by-name/ca/cargo-dist/package.nix @@ -13,16 +13,16 @@ rustPlatform.buildRustPackage rec { pname = "cargo-dist"; - version = "0.28.2"; + version = "0.29.0"; src = fetchFromGitHub { owner = "axodotdev"; repo = "cargo-dist"; rev = "v${version}"; - hash = "sha256-Nlix74IvhUuWKJTslPajGHkGKxGPo1ucTEkuuA//zn0="; + hash = "sha256-J4zAjbyHHLxdObos/drDH5sDVmQE8h1WFqmfG8ac3uQ="; }; - cargoHash = "sha256-GmzMmErEshYECMr7APhJ6uWqflHbG73bw/utMgq3dk0="; + cargoHash = "sha256-aPI8NtcLnLrQ0AC2E09QtH5RfXJ8cBtBrVfB3AwbgKc="; nativeBuildInputs = [ pkg-config From 5d2750268b5a9464354645382d5a9d63ac0ec09f Mon Sep 17 00:00:00 2001 From: Andrew Marshall Date: Wed, 25 Sep 2024 12:34:41 -0400 Subject: [PATCH 099/116] zfs: verify kernel compatibility against META MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switch to specifying the Kernel compatibility in the same form as in the ZFS source’s `META` file. This then allows checking it against what’s in `META` to remove the need to manually check, and so reduce the cognitive load and change of mistakes when performing updates. As the “max” version is indeed a compatible version, we need to increment that for the comparison when using `versionOlder`. One side-effect here is that it makes it not possible to override the specified compatibility. We will “fix” this soon. --- pkgs/os-specific/linux/zfs/2_2.nix | 5 +++-- pkgs/os-specific/linux/zfs/2_3.nix | 5 +++-- pkgs/os-specific/linux/zfs/generic.nix | 29 +++++++++++++++++++++++-- pkgs/os-specific/linux/zfs/unstable.nix | 5 +++-- 4 files changed, 36 insertions(+), 8 deletions(-) diff --git a/pkgs/os-specific/linux/zfs/2_2.nix b/pkgs/os-specific/linux/zfs/2_2.nix index bdd58548f2e8..487435ca5f48 100644 --- a/pkgs/os-specific/linux/zfs/2_2.nix +++ b/pkgs/os-specific/linux/zfs/2_2.nix @@ -10,8 +10,9 @@ callPackage ./generic.nix args { # You have to ensure that in `pkgs/top-level/linux-kernels.nix` # this attribute is the correct one for this package. kernelModuleAttribute = "zfs_2_2"; - # check the release notes for compatible kernels - kernelCompatible = kernel: kernel.kernelOlder "6.16"; + + kernelMinSupportedMajorMinor = "4.18"; + kernelMaxSupportedMajorMinor = "6.15"; # this package should point to the latest release. version = "2.2.8"; diff --git a/pkgs/os-specific/linux/zfs/2_3.nix b/pkgs/os-specific/linux/zfs/2_3.nix index 1b4f0e642bf5..b58a5c6480d3 100644 --- a/pkgs/os-specific/linux/zfs/2_3.nix +++ b/pkgs/os-specific/linux/zfs/2_3.nix @@ -10,8 +10,9 @@ callPackage ./generic.nix args { # You have to ensure that in `pkgs/top-level/linux-kernels.nix` # this attribute is the correct one for this package. kernelModuleAttribute = "zfs_2_3"; - # check the release notes for compatible kernels - kernelCompatible = kernel: kernel.kernelOlder "6.16"; + + kernelMinSupportedMajorMinor = "4.18"; + kernelMaxSupportedMajorMinor = "6.15"; # this package should point to the latest release. version = "2.3.3"; diff --git a/pkgs/os-specific/linux/zfs/generic.nix b/pkgs/os-specific/linux/zfs/generic.nix index 2d74e9734c56..15121d7ca721 100644 --- a/pkgs/os-specific/linux/zfs/generic.nix +++ b/pkgs/os-specific/linux/zfs/generic.nix @@ -48,7 +48,8 @@ let extraLongDescription ? "", extraPatches ? [ ], rev ? "zfs-${version}", - kernelCompatible ? null, + kernelMinSupportedMajorMinor, + kernelMaxSupportedMajorMinor, maintainers ? (with lib.maintainers; [ amarshall ]), tests, }@innerArgs: @@ -72,6 +73,22 @@ let "user" "all" ]; + kernelIsCompatible = + kernel: + let + nextMajorMinor = + ver: + "${lib.versions.major ver}.${ + lib.pipe ver [ + lib.versions.minor + lib.toInt + (x: x + 1) + toString + ] + }"; + in + (lib.versionAtLeast kernel.version kernelMinSupportedMajorMinor) + && (lib.versionOlder kernel.version (nextMajorMinor kernelMaxSupportedMajorMinor)); # XXX: You always want to build kernel modules with the same stdenv as the # kernel was built with. However, since zfs can also be built for userspace we @@ -139,6 +156,14 @@ let "bashcompletiondir=$out/share/bash-completion/completions" substituteInPlace ./cmd/arc_summary --replace-fail "/sbin/modinfo" "modinfo" + '' + + '' + echo 'Supported Kernel versions:' + grep '^Linux-' META + echo 'Checking kernelMinSupportedMajorMinor is correct...' + grep --quiet '^Linux-Minimum: *${lib.escapeRegex kernelMinSupportedMajorMinor}$' META + echo 'Checking kernelMaxSupportedMajorMinor is correct...' + grep --quiet '^Linux-Maximum: *${lib.escapeRegex kernelMaxSupportedMajorMinor}$' META ''; nativeBuildInputs = [ @@ -330,7 +355,7 @@ let inherit maintainers; mainProgram = "zfs"; - broken = buildKernel && (kernelCompatible != null) && !(kernelCompatible kernel); + broken = buildKernel && !(kernelIsCompatible kernel); }; }; in diff --git a/pkgs/os-specific/linux/zfs/unstable.nix b/pkgs/os-specific/linux/zfs/unstable.nix index 5bd1412d6c32..269110fdc53a 100644 --- a/pkgs/os-specific/linux/zfs/unstable.nix +++ b/pkgs/os-specific/linux/zfs/unstable.nix @@ -8,8 +8,9 @@ callPackage ./generic.nix args { # You have to ensure that in `pkgs/top-level/linux-kernels.nix` # this attribute is the correct one for this package. kernelModuleAttribute = "zfs_unstable"; - # check the release notes for compatible kernels - kernelCompatible = kernel: kernel.kernelOlder "6.16"; + + kernelMinSupportedMajorMinor = "4.18"; + kernelMaxSupportedMajorMinor = "6.15"; # this package should point to a version / git revision compatible with the latest kernel release # IMPORTANT: Always use a tagged release candidate or commits from the From 3d589fc858aca06fe2d759c009eb1e12f1f6a6a9 Mon Sep 17 00:00:00 2001 From: Andrew Marshall Date: Fri, 2 May 2025 18:12:43 -0400 Subject: [PATCH 100/116] zfs: add enableUnsupportedExperimentalKernel option MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This will allow building ZFS against an unsupported Kernel version. While possible, it is not supported by upstream or Nixpkgs. As such, we don’t enable it by default, even for zfs_unstable. Enabling should be a deliberate choice by the user to opt into potential data corruption bugs. --- pkgs/os-specific/linux/zfs/generic.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/zfs/generic.nix b/pkgs/os-specific/linux/zfs/generic.nix index 15121d7ca721..66d850ad71d6 100644 --- a/pkgs/os-specific/linux/zfs/generic.nix +++ b/pkgs/os-specific/linux/zfs/generic.nix @@ -50,6 +50,7 @@ let rev ? "zfs-${version}", kernelMinSupportedMajorMinor, kernelMaxSupportedMajorMinor, + enableUnsupportedExperimentalKernel ? false, # allows building against unsupported Kernel versions maintainers ? (with lib.maintainers; [ amarshall ]), tests, }@innerArgs: @@ -201,6 +202,7 @@ let "--with-tirpc=1" (lib.withFeatureAs (buildUser && enablePython) "python" python3.interpreter) ] + ++ optional enableUnsupportedExperimentalKernel "--enable-linux-experimental" ++ optionals buildUser [ "--with-dracutdir=$(out)/lib/dracut" "--with-udevdir=$(out)/lib/udev" @@ -355,7 +357,7 @@ let inherit maintainers; mainProgram = "zfs"; - broken = buildKernel && !(kernelIsCompatible kernel); + broken = buildKernel && !((kernelIsCompatible kernel) || enableUnsupportedExperimentalKernel); }; }; in From e8cb992ccc2dcd242f7ac4c4afdc5898d81263e5 Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Tue, 14 Jan 2025 19:39:38 +0400 Subject: [PATCH 101/116] lsd2dsl: fix build --- pkgs/by-name/ls/lsd2dsl/package.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/ls/lsd2dsl/package.nix b/pkgs/by-name/ls/lsd2dsl/package.nix index c2b9719e3ab8..0b66f0365e14 100644 --- a/pkgs/by-name/ls/lsd2dsl/package.nix +++ b/pkgs/by-name/ls/lsd2dsl/package.nix @@ -2,6 +2,7 @@ lib, stdenv, fetchFromGitHub, + fetchpatch, makeDesktopItem, copyDesktopItems, cmake, @@ -26,6 +27,13 @@ stdenv.mkDerivation rec { hash = "sha256-0UsxDNpuWpBrfjh4q3JhZnOyXhHatSa3t/cApiG2JzM="; }; + patches = [ + (fetchpatch { + url = "https://github.com/nongeneric/lsd2dsl/commit/bbda5be1b76a4a44804483d00c07d79783eceb6b.patch"; + hash = "sha256-7is83D1cMBArXVLe5TP7D7lUcwnTMeXjkJ+cbaH5JQk="; + }) + ]; + postPatch = '' substituteInPlace CMakeLists.txt --replace "-Werror" "" ''; @@ -48,7 +56,7 @@ stdenv.mkDerivation rec { qt6.qtwebengine ]; - env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-int-conversion"; + env.NIX_CFLAGS_COMPILE = "-Wno-int-conversion"; desktopItems = lib.singleton (makeDesktopItem { name = "lsd2dsl"; From 0bd5ea3e1b8550b7b072cae5a817cc057b02c4fa Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Fri, 1 Aug 2025 15:31:51 +0400 Subject: [PATCH 102/116] lsd2dsl: modernize --- pkgs/by-name/ls/lsd2dsl/package.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/by-name/ls/lsd2dsl/package.nix b/pkgs/by-name/ls/lsd2dsl/package.nix index 0b66f0365e14..6a7179a7f1c3 100644 --- a/pkgs/by-name/ls/lsd2dsl/package.nix +++ b/pkgs/by-name/ls/lsd2dsl/package.nix @@ -16,14 +16,14 @@ qt6, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "lsd2dsl"; version = "0.6.0"; src = fetchFromGitHub { owner = "nongeneric"; repo = "lsd2dsl"; - rev = "v${version}"; + tag = "v${finalAttrs.version}"; hash = "sha256-0UsxDNpuWpBrfjh4q3JhZnOyXhHatSa3t/cApiG2JzM="; }; @@ -63,7 +63,7 @@ stdenv.mkDerivation rec { exec = "lsd2dsl-qtgui"; desktopName = "lsd2dsl"; genericName = "lsd2dsl"; - comment = meta.description; + comment = finalAttrs.meta.description; categories = [ "Dictionary" "FileTools" @@ -75,14 +75,14 @@ stdenv.mkDerivation rec { install -Dm755 console/lsd2dsl gui/lsd2dsl-qtgui -t $out/bin ''; - meta = with lib; { + meta = { homepage = "https://rcebits.com/lsd2dsl/"; description = "Lingvo dictionaries decompiler"; longDescription = '' A decompiler for ABBYY Lingvo’s proprietary dictionaries. ''; - license = licenses.mit; - maintainers = with maintainers; [ sikmir ]; - platforms = platforms.unix; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ sikmir ]; + platforms = lib.platforms.unix; }; -} +}) From 57a06e12be55c723040796a826ca848d69f68196 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 12:36:09 +0000 Subject: [PATCH 103/116] panoply: 5.6.1 -> 5.6.2 --- pkgs/by-name/pa/panoply/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/pa/panoply/package.nix b/pkgs/by-name/pa/panoply/package.nix index 03078eb621c0..b8bbdba8e308 100644 --- a/pkgs/by-name/pa/panoply/package.nix +++ b/pkgs/by-name/pa/panoply/package.nix @@ -8,11 +8,11 @@ stdenvNoCC.mkDerivation rec { pname = "panoply"; - version = "5.6.1"; + version = "5.6.2"; src = fetchurl { url = "https://www.giss.nasa.gov/tools/panoply/download/PanoplyJ-${version}.tgz"; - hash = "sha256-r3hKlBRpZe9HJws24cqoiiQmFlH6Abn++w5yEudgKfI="; + hash = "sha256-DxQjIUv2Gkb3VnaorphMDTo+GlM/NoCZ6y/ogHSs07c="; }; nativeBuildInputs = [ makeWrapper ]; From 35ca26e31967a2f8717786e931d9d3da7d2192e9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 12:39:36 +0000 Subject: [PATCH 104/116] crowdin-cli: 4.9.0 -> 4.9.1 --- pkgs/by-name/cr/crowdin-cli/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/cr/crowdin-cli/package.nix b/pkgs/by-name/cr/crowdin-cli/package.nix index 0245a807e4f3..42718799e882 100644 --- a/pkgs/by-name/cr/crowdin-cli/package.nix +++ b/pkgs/by-name/cr/crowdin-cli/package.nix @@ -14,11 +14,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "crowdin-cli"; - version = "4.9.0"; + version = "4.9.1"; src = fetchurl { url = "https://github.com/crowdin/crowdin-cli/releases/download/${finalAttrs.version}/crowdin-cli.zip"; - hash = "sha256-fPgcr0Gg0uIgDhnfowFp6K+NhtKdjThLd4yzjcZ78K4="; + hash = "sha256-VU3kG8Y/p6bM/kkExmP6Mww46d1kxpljhNIRNhUY6kg="; }; nativeBuildInputs = [ From 2ced5f499b7ac5d40ca96d8da70c18f9d7bee57b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 12:57:37 +0000 Subject: [PATCH 105/116] svix-server: 1.69.0 -> 1.70.0 --- pkgs/by-name/sv/svix-server/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/sv/svix-server/package.nix b/pkgs/by-name/sv/svix-server/package.nix index 2df5402a404b..f405786e5747 100644 --- a/pkgs/by-name/sv/svix-server/package.nix +++ b/pkgs/by-name/sv/svix-server/package.nix @@ -10,18 +10,18 @@ rustPlatform.buildRustPackage rec { pname = "svix-server"; - version = "1.69.0"; + version = "1.70.0"; src = fetchFromGitHub { owner = "svix"; repo = "svix-webhooks"; rev = "v${version}"; - hash = "sha256-1boqSBDm91cOeHvecYb21MHpzUkSWkG20lPr/HpQSxQ="; + hash = "sha256-82QB+EmZf1v3L5zTLydaa4WlIUK5IJT0ghOpmIC1nRE="; }; sourceRoot = "${src.name}/server"; - cargoHash = "sha256-IJvGDMEI4bmJGsX5mM3xJ5eg/jqCoR/13s6KBrkFH/E="; + cargoHash = "sha256-f6nU5i9Dhy9inqqpHlNjR1M2E781398xo/T7hVGuCvk="; nativeBuildInputs = [ pkg-config ]; From bb2974b8cf2e57cfb3a87d7911fb715519e8b7f6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 12:58:54 +0000 Subject: [PATCH 106/116] python3Packages.oelint-data: 1.0.23 -> 1.0.24 --- pkgs/development/python-modules/oelint-data/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/oelint-data/default.nix b/pkgs/development/python-modules/oelint-data/default.nix index 7564a2a0f8e5..9ef22aaebe2b 100644 --- a/pkgs/development/python-modules/oelint-data/default.nix +++ b/pkgs/development/python-modules/oelint-data/default.nix @@ -8,14 +8,14 @@ buildPythonPackage rec { pname = "oelint-data"; - version = "1.0.23"; + version = "1.0.24"; pyproject = true; src = fetchFromGitHub { owner = "priv-kweihmann"; repo = "oelint-data"; tag = version; - hash = "sha256-JN563FGxM9Z+2dKzLBlepN1x2oKlUq0nIBwB0Obe8yY="; + hash = "sha256-vKXRlqpFxdmq+UOGCm59LVwjLW8h1N/fQr4kx1eW8ys="; }; build-system = [ From d51ae0f79a29ad3d1953f8eb877aed5b3e7e53ec Mon Sep 17 00:00:00 2001 From: voxi0 Date: Fri, 1 Aug 2025 00:36:51 +0100 Subject: [PATCH 107/116] wayland-bongocat: init at 1.2.1 --- maintainers/maintainer-list.nix | 1405 +++++++++--------- pkgs/by-name/wa/wayland-bongocat/package.nix | 57 + 2 files changed, 759 insertions(+), 703 deletions(-) create mode 100644 pkgs/by-name/wa/wayland-bongocat/package.nix diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index e340b808d9b5..f0a9b34f686c 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -1,67 +1,67 @@ /* -List of NixOS maintainers. - ```nix - handle = { - # Required - name = "Your name"; + List of NixOS maintainers. + ```nix + handle = { + # Required + name = "Your name"; - # Optional, but at least one of email, matrix or githubId must be given - email = "address@example.org"; - matrix = "@user:example.org"; - github = "GithubUsername"; - githubId = your-github-id; + # Optional, but at least one of email, matrix or githubId must be given + email = "address@example.org"; + matrix = "@user:example.org"; + github = "GithubUsername"; + githubId = your-github-id; - keys = [{ - fingerprint = "AAAA BBBB CCCC DDDD EEEE FFFF 0000 1111 2222 3333"; - }]; - }; - ``` + keys = [{ + fingerprint = "AAAA BBBB CCCC DDDD EEEE FFFF 0000 1111 2222 3333"; + }]; + }; + ``` - where + where - - `handle` is the handle you are going to use in nixpkgs expressions, - - `name` is a name that people would know and recognize you by, - - `email` is your maintainer email address, - - `matrix` is your Matrix user ID, - - `github` is your GitHub handle (as it appears in the URL of your profile page, `https://github.com/`), - - `githubId` is your GitHub user ID, which can be found at `https://api.github.com/users/`, - - `keys` is a list of your PGP/GPG key fingerprints. + - `handle` is the handle you are going to use in nixpkgs expressions, + - `name` is a name that people would know and recognize you by, + - `email` is your maintainer email address, + - `matrix` is your Matrix user ID, + - `github` is your GitHub handle (as it appears in the URL of your profile page, `https://github.com/`), + - `githubId` is your GitHub user ID, which can be found at `https://api.github.com/users/`, + - `keys` is a list of your PGP/GPG key fingerprints. - Specifying a GitHub account ensures that you automatically: - - get invited to the @NixOS/nixpkgs-maintainers team ; - - once you are part of the @NixOS org, OfBorg will request you review - pull requests that modify a package for which you are a maintainer. + Specifying a GitHub account ensures that you automatically: + - get invited to the @NixOS/nixpkgs-maintainers team ; + - once you are part of the @NixOS org, OfBorg will request you review + pull requests that modify a package for which you are a maintainer. - `handle == github` is strongly preferred whenever `github` is an acceptable attribute name and is short and convenient. + `handle == github` is strongly preferred whenever `github` is an acceptable attribute name and is short and convenient. - If `github` begins with a numeral, `handle` should be prefixed with an underscore. - ```nix - _1example = { - github = "1example"; - }; - ``` + If `github` begins with a numeral, `handle` should be prefixed with an underscore. + ```nix + _1example = { + github = "1example"; + }; + ``` - Add PGP/GPG keys only if you actually use them to sign commits and/or mail. + Add PGP/GPG keys only if you actually use them to sign commits and/or mail. - To get the required PGP/GPG values for a key run - ```shell - gpg --fingerprint | head -n 2 - ``` + To get the required PGP/GPG values for a key run + ```shell + gpg --fingerprint | head -n 2 + ``` - !!! Note that PGP/GPG values stored here are for informational purposes only, don't use this file as a source of truth. + !!! Note that PGP/GPG values stored here are for informational purposes only, don't use this file as a source of truth. - More fields may be added in the future, however, in order to comply with GDPR this file should stay as minimal as possible. + More fields may be added in the future, however, in order to comply with GDPR this file should stay as minimal as possible. - When editing this file: - * keep the list alphabetically sorted - * test the validity of the format with: - nix-build lib/tests/maintainers.nix + When editing this file: + * keep the list alphabetically sorted + * test the validity of the format with: + nix-build lib/tests/maintainers.nix - See `./scripts/check-maintainer-github-handles.sh` for an example on how to work with this data. + See `./scripts/check-maintainer-github-handles.sh` for an example on how to work with this data. - When adding a new maintainer, be aware of the current commit conventions - documented at [CONTRIBUTING.md](https://github.com/NixOS/nixpkgs/blob/master/CONTRIBUTING.md#commit-conventions) - file located in the root of the Nixpkgs repo. + When adding a new maintainer, be aware of the current commit conventions + documented at [CONTRIBUTING.md](https://github.com/NixOS/nixpkgs/blob/master/CONTRIBUTING.md#commit-conventions) + file located in the root of the Nixpkgs repo. */ { # keep-sorted start case=no numeric=no block=yes @@ -107,7 +107,7 @@ List of NixOS maintainers. name = "Joachim Ernst"; github = "0x4A6F"; githubId = 9675338; - keys = [{fingerprint = "F466 A548 AD3F C1F1 8C88 4576 8702 7528 B006 D66D";}]; + keys = [ { fingerprint = "F466 A548 AD3F C1F1 8C88 4576 8702 7528 B006 D66D"; } ]; }; _0x5a4 = { email = "bej86nug@hhu.de"; @@ -126,7 +126,7 @@ List of NixOS maintainers. name = "Bela Stoyan"; github = "0xbe7a"; githubId = 6232980; - keys = [{fingerprint = "2536 9E86 1AA5 9EB7 4C47 B138 6510 870A 77F4 9A99";}]; + keys = [ { fingerprint = "2536 9E86 1AA5 9EB7 4C47 B138 6510 870A 77F4 9A99"; } ]; }; _0xC45 = { email = "jason@0xc45.com"; @@ -247,7 +247,7 @@ List of NixOS maintainers. github = "4r7if3x"; githubId = 8606282; name = "4r7if3x"; - keys = [{fingerprint = "013C ED4B E769 745A CFC3 0F3C F23C 2613 2266 7A12";}]; + keys = [ { fingerprint = "013C ED4B E769 745A CFC3 0F3C F23C 2613 2266 7A12"; } ]; }; _6543 = { email = "6543@obermui.de"; @@ -255,7 +255,7 @@ List of NixOS maintainers. github = "6543"; githubId = 24977596; name = "6543"; - keys = [{fingerprint = "8722 B61D 7234 1082 553B 201C B8BE 6D61 0E61 C862";}]; + keys = [ { fingerprint = "8722 B61D 7234 1082 553B 201C B8BE 6D61 0E61 C862"; } ]; }; _6AA4FD = { email = "f6442954@gmail.com"; @@ -298,7 +298,7 @@ List of NixOS maintainers. github = "999eagle"; githubId = 1221984; name = "Sophie Tauchert"; - keys = [{fingerprint = "7B59 F09E 0FE5 BC34 F032 1FB4 5270 1DE5 F5F5 1125";}]; + keys = [ { fingerprint = "7B59 F09E 0FE5 BC34 F032 1FB4 5270 1DE5 F5F5 1125"; } ]; }; _9glenda = { email = "plan9git@proton.me"; @@ -306,7 +306,7 @@ List of NixOS maintainers. github = "9glenda"; githubId = 69043370; name = "9glenda"; - keys = [{fingerprint = "DBF4 E6D0 90B8 BEA4 4BFE 1F1C 3442 4321 39B5 0691";}]; + keys = [ { fingerprint = "DBF4 E6D0 90B8 BEA4 4BFE 1F1C 3442 4321 39B5 0691"; } ]; }; _9R = { email = "nix@9-r.net"; @@ -430,7 +430,7 @@ List of NixOS maintainers. github = "wahjava"; githubId = 2255192; name = "Ashish SHUKLA"; - keys = [{fingerprint = "F682 CDCC 39DC 0FEA E116 20B6 C746 CFA9 E74F A4B0";}]; + keys = [ { fingerprint = "F682 CDCC 39DC 0FEA E116 20B6 C746 CFA9 E74F A4B0"; } ]; }; abbradar = { email = "ab@fmap.me"; @@ -558,14 +558,14 @@ List of NixOS maintainers. email = "zestypurple@protonmail.com"; github = "acuteaangle"; githubId = 79724236; - keys = [{fingerprint = "46C0 9BA8 A20E 5C50 1E1E 0597 0B6D 17F7 2BC4 7F61";}]; + keys = [ { fingerprint = "46C0 9BA8 A20E 5C50 1E1E 0597 0B6D 17F7 2BC4 7F61"; } ]; }; acuteenvy = { matrix = "@acuteenvy:matrix.org"; github = "acuteenvy"; githubId = 126529524; name = "Lena"; - keys = [{fingerprint = "CE85 54F7 B9BC AC0D D648 5661 AB5F C04C 3C94 443F";}]; + keys = [ { fingerprint = "CE85 54F7 B9BC AC0D D648 5661 AB5F C04C 3C94 443F"; } ]; }; adam248 = { email = "adamjbutler091@gmail.com"; @@ -592,8 +592,8 @@ List of NixOS maintainers. github = "adamperkowski"; githubId = 75480869; keys = [ - {fingerprint = "00F6 1623 FB56 BC5B B709 4E63 4CE6 C117 2DF6 BE79";} - {fingerprint = "5A53 0832 DA91 20B0 CA57 DDB6 7CBD B58E CF1D 3478";} + { fingerprint = "00F6 1623 FB56 BC5B B709 4E63 4CE6 C117 2DF6 BE79"; } + { fingerprint = "5A53 0832 DA91 20B0 CA57 DDB6 7CBD B58E CF1D 3478"; } ]; }; adamt = { @@ -702,14 +702,14 @@ List of NixOS maintainers. github = "adtya"; githubId = 22346805; name = "Adithya Nair"; - keys = [{fingerprint = "51E4 F5AB 1B82 BE45 B422 9CC2 43A5 E25A A5A2 7849";}]; + keys = [ { fingerprint = "51E4 F5AB 1B82 BE45 B422 9CC2 43A5 E25A A5A2 7849"; } ]; }; aduh95 = { email = "duhamelantoine1995@gmail.com"; github = "aduh95"; githubId = 14309773; name = "Antoine du Hamel"; - keys = [{fingerprint = "5BE8 A3F6 C8A5 C01D 106C 0AD8 20B1 A390 B168 D356";}]; + keys = [ { fingerprint = "5BE8 A3F6 C8A5 C01D 106C 0AD8 20B1 A390 B168 D356"; } ]; }; aerialx = { email = "aaron+nixos@aaronlindsay.com"; @@ -844,7 +844,7 @@ List of NixOS maintainers. matrix = "@aikoo7:matrix.org"; github = "aikooo7"; githubId = 79667753; - keys = [{fingerprint = "B0D7 2955 235F 6AB5 ACFA 1619 8C7F F5BB 1ADE F191";}]; + keys = [ { fingerprint = "B0D7 2955 235F 6AB5 ACFA 1619 8C7F F5BB 1ADE F191"; } ]; }; ailsa-sun = { name = "Ailsa Sun"; @@ -971,7 +971,7 @@ List of NixOS maintainers. email = "alessandro.barenghi@tuta.io"; github = "akkesm"; githubId = 56970006; - keys = [{fingerprint = "50E2 669C AB38 2F4A 5F72 1667 0D6B FC01 D45E DADD";}]; + keys = [ { fingerprint = "50E2 669C AB38 2F4A 5F72 1667 0D6B FC01 D45E DADD"; } ]; }; akotro = { name = "Antonis Kotronakis"; @@ -1019,7 +1019,7 @@ List of NixOS maintainers. github = "al3xtjames"; githubId = 5672538; name = "Alex James"; - keys = [{fingerprint = "F354 FFAB EA89 A49D 33ED 2590 4729 B829 AC5F CC72";}]; + keys = [ { fingerprint = "F354 FFAB EA89 A49D 33ED 2590 4729 B829 AC5F CC72"; } ]; }; ALameLlama = { email = "NicholasACiechanowski@gmail.com"; @@ -1192,7 +1192,7 @@ List of NixOS maintainers. email = "ashpilkin@gmail.com"; github = "alexshpilkin"; githubId = 1010468; - keys = [{fingerprint = "B595 D74D 6615 C010 469F 5A13 73E9 AA11 4B3A 894B";}]; + keys = [ { fingerprint = "B595 D74D 6615 C010 469F 5A13 73E9 AA11 4B3A 894B"; } ]; matrix = "@alexshpilkin:matrix.org"; name = "Alexander Shpilkin"; }; @@ -1298,7 +1298,7 @@ List of NixOS maintainers. matrix = "@aloisw:kde.org"; github = "alois31"; githubId = 36605164; - keys = [{fingerprint = "CA97 A822 FF24 25D4 74AF 3E4B E0F5 9EA5 E521 6914";}]; + keys = [ { fingerprint = "CA97 A822 FF24 25D4 74AF 3E4B E0F5 9EA5 E521 6914"; } ]; }; Alper-Celik = { email = "alper@alper-celik.dev"; @@ -1306,8 +1306,8 @@ List of NixOS maintainers. github = "Alper-Celik"; githubId = 110625473; keys = [ - {fingerprint = "6B69 19DD CEE0 FAF3 5C9F 2984 FA90 C0AB 738A B873";} - {fingerprint = "DF68 C500 4024 23CC F9C5 E6CA 3D17 C832 4696 FE70";} + { fingerprint = "6B69 19DD CEE0 FAF3 5C9F 2984 FA90 C0AB 738A B873"; } + { fingerprint = "DF68 C500 4024 23CC F9C5 E6CA 3D17 C832 4696 FE70"; } ]; }; alternateved = { @@ -1425,7 +1425,7 @@ List of NixOS maintainers. email = "matilde@diffyq.xyz"; github = "matilde-ametrine"; githubId = 90799677; - keys = [{fingerprint = "7931 EB4E 4712 D7BE 04F8 6D34 07EE 1FFC A58A 11C5";}]; + keys = [ { fingerprint = "7931 EB4E 4712 D7BE 04F8 6D34 07EE 1FFC A58A 11C5"; } ]; }; amfl = { email = "amfl@none.none"; @@ -1467,7 +1467,7 @@ List of NixOS maintainers. github = "amyipdev"; githubId = 46307646; name = "Amy Parker"; - keys = [{fingerprint = "7786 034B D521 49F5 1B0A 2A14 B112 2F04 E962 DDC5";}]; + keys = [ { fingerprint = "7786 034B D521 49F5 1B0A 2A14 B112 2F04 E962 DDC5"; } ]; }; amz-x = { email = "mail@amz-x.com"; @@ -1486,7 +1486,7 @@ List of NixOS maintainers. github = "0x61nas"; githubId = 44965145; name = "Anas Elgarhy"; - keys = [{fingerprint = "E10B D192 9231 08C7 3C35 7EC3 83E0 3DC6 F383 4086";}]; + keys = [ { fingerprint = "E10B D192 9231 08C7 3C35 7EC3 83E0 3DC6 F383 4086"; } ]; }; AnatolyPopov = { email = "aipopov@live.ru"; @@ -1670,14 +1670,14 @@ List of NixOS maintainers. matrix = "@angryant:envs.net"; github = "AngryAnt"; githubId = 102513; - keys = [{fingerprint = "B7B7 582E 564E 789B FCB8 71AB 0C6D FE2F B234 534A";}]; + keys = [ { fingerprint = "B7B7 582E 564E 789B FCB8 71AB 0C6D FE2F B234 534A"; } ]; }; anhdle14 = { name = "Le Anh Duc"; email = "anhdle14@icloud.com"; github = "anhdle14"; githubId = 9645992; - keys = [{fingerprint = "AA4B 8EC3 F971 D350 482E 4E20 0299 AFF9 ECBB 5169";}]; + keys = [ { fingerprint = "AA4B 8EC3 F971 D350 482E 4E20 0299 AFF9 ECBB 5169"; } ]; }; anhduy = { email = "vo@anhduy.io"; @@ -1690,7 +1690,7 @@ List of NixOS maintainers. email = "i@anillc.cn"; github = "Anillc"; githubId = 23411248; - keys = [{fingerprint = "6141 1E4F FE10 CE7B 2E14 CD76 0BE8 A88F 47B2 145C";}]; + keys = [ { fingerprint = "6141 1E4F FE10 CE7B 2E14 CD76 0BE8 A88F 47B2 145C"; } ]; }; anirrudh = { email = "anik597@gmail.com"; @@ -1748,9 +1748,9 @@ List of NixOS maintainers. matrix = "@anpin:matrix.org"; name = "Pavel Anpin"; keys = [ - {fingerprint = "06E8 4FF6 0CCF 7AFD 5101 76C9 0FBC D3EE 6310 7407";} + { fingerprint = "06E8 4FF6 0CCF 7AFD 5101 76C9 0FBC D3EE 6310 7407"; } # compare with https://keybase.io/anpin/pgp_keys.asc - {fingerprint = "DADF F3EA 06DC 8C1B 100A 24DB 312E 8F17 91C5 DA8C";} + { fingerprint = "DADF F3EA 06DC 8C1B 100A 24DB 312E 8F17 91C5 DA8C"; } ]; }; anpryl = { @@ -1765,7 +1765,7 @@ List of NixOS maintainers. githubId = 48802534; name = "Anselm Schüler"; matrix = "@schuelermine:matrix.org"; - keys = [{fingerprint = "CDBF ECA8 36FE E340 1CEB 58FF BA34 EE1A BA3A 0955";}]; + keys = [ { fingerprint = "CDBF ECA8 36FE E340 1CEB 58FF BA34 EE1A BA3A 0955"; } ]; }; # currently on hiatus, please do not ping until this notice is removed (or if it’s been like two years) anthonyroussel = { email = "anthony@roussel.dev"; @@ -1773,7 +1773,7 @@ List of NixOS maintainers. githubId = 220084; name = "Anthony Roussel"; matrix = "@anthonyrsl:matrix.org"; - keys = [{fingerprint = "472D 368A F107 F443 F3A5 C712 9DC4 987B 1A55 E75E";}]; + keys = [ { fingerprint = "472D 368A F107 F443 F3A5 C712 9DC4 987B 1A55 E75E"; } ]; }; antipatico = { email = "code@bootkit.dev"; @@ -1809,7 +1809,7 @@ List of NixOS maintainers. github = "antonmosich"; githubId = 27223336; name = "Anton Mosich"; - keys = [{fingerprint = "F401 287C 324F 0A1C B321 657B 9B96 97B8 FB18 7D14";}]; + keys = [ { fingerprint = "F401 287C 324F 0A1C B321 657B 9B96 97B8 FB18 7D14"; } ]; }; antono = { email = "self@antono.info"; @@ -1877,7 +1877,7 @@ List of NixOS maintainers. github = "aplund"; githubId = 1369436; name = "Austin Lund"; - keys = [{fingerprint = "7083 E268 4BFD 845F 2B84 9E74 B695 8918 ED23 32CE";}]; + keys = [ { fingerprint = "7083 E268 4BFD 845F 2B84 9E74 B695 8918 ED23 32CE"; } ]; }; appleboblin = { email = "github@appleboblin.com"; @@ -1891,8 +1891,8 @@ List of NixOS maintainers. githubId = 2477952; name = "Kalle Fagerberg"; keys = [ - {fingerprint = "F68E 6DB3 79FB 1FF0 7C72 6479 9874 DEDD 3592 5ED0";} - {fingerprint = "8DDB 3994 0A34 4FE5 4F3B 3E77 F161 001D EE78 1051";} + { fingerprint = "F68E 6DB3 79FB 1FF0 7C72 6479 9874 DEDD 3592 5ED0"; } + { fingerprint = "8DDB 3994 0A34 4FE5 4F3B 3E77 F161 001D EE78 1051"; } ]; }; applePrincess = { @@ -1900,7 +1900,7 @@ List of NixOS maintainers. github = "applePrincess"; githubId = 17154507; name = "Lein Matsumaru"; - keys = [{fingerprint = "BF8B F725 DA30 E53E 7F11 4ED8 AAA5 0652 F047 9205";}]; + keys = [ { fingerprint = "BF8B F725 DA30 E53E 7F11 4ED8 AAA5 0652 F047 9205"; } ]; }; appsforartists = { github = "appsforartists"; @@ -2130,7 +2130,7 @@ List of NixOS maintainers. github = "artemist"; githubId = 1226638; name = "Artemis Tosini"; - keys = [{fingerprint = "3D2B B230 F9FA F0C5 1832 46DD 4FDC 96F1 61E7 BA8A";}]; + keys = [ { fingerprint = "3D2B B230 F9FA F0C5 1832 46DD 4FDC 96F1 61E7 BA8A"; } ]; }; arthsmn = { name = "Arthur Cerqueira"; @@ -2227,14 +2227,14 @@ List of NixOS maintainers. email = "software@conlon.dev"; github = "a1994sc"; githubId = 1966320; - keys = [{fingerprint = "E1F3 9B80 47A5 1EB9 01F8 C385 7FE3 F668 49737 F37";}]; + keys = [ { fingerprint = "E1F3 9B80 47A5 1EB9 01F8 C385 7FE3 F668 49737 F37"; } ]; }; asciimoth = { name = "Andrew"; email = "ascii@moth.contact"; github = "asciimoth"; githubId = 91414737; - keys = [{fingerprint = "C5C8 4658 CCFD 7E8E 71DE E933 AF3A E54F C3A3 5C9F";}]; + keys = [ { fingerprint = "C5C8 4658 CCFD 7E8E 71DE E933 AF3A E54F C3A3 5C9F"; } ]; }; ashalkhakov = { email = "artyom.shalkhakov@gmail.com"; @@ -2278,7 +2278,7 @@ List of NixOS maintainers. github = "ashuramaruzxc"; githubId = 72100551; name = "Mariia Holovata"; - keys = [{fingerprint = "409D 201E 9450 8732 A49E D0FC 6BDA F874 0068 08DF";}]; + keys = [ { fingerprint = "409D 201E 9450 8732 A49E D0FC 6BDA F874 0068 08DF"; } ]; }; asininemonkey = { email = "nixpkgs@asininemonkey.com"; @@ -2309,7 +2309,7 @@ List of NixOS maintainers. github = "AsPulse"; githubId = 84216737; name = "AsPulse / あすぱる"; - keys = [{fingerprint = "C919 E69E A7C0 E147 9E0F C26E 1EDA D0C6 70BD 062D";}]; + keys = [ { fingerprint = "C919 E69E A7C0 E147 9E0F C26E 1EDA D0C6 70BD 062D"; } ]; }; assistant = { email = "assistant.moetron@gmail.com"; @@ -2342,7 +2342,7 @@ List of NixOS maintainers. github = "astrobeastie"; githubId = 26362368; name = "Vincent Fischer"; - keys = [{fingerprint = "BF47 81E1 F304 1ADF 18CE C401 DE16 C7D1 536D A72F";}]; + keys = [ { fingerprint = "BF47 81E1 F304 1ADF 18CE C401 DE16 C7D1 536D A72F"; } ]; }; astronaut0212 = { email = "goatastronaut0212@outlook.com"; @@ -2362,7 +2362,7 @@ List of NixOS maintainers. github = "aszlig"; githubId = 192147; name = "aszlig"; - keys = [{fingerprint = "DD52 6BC7 767D BA28 16C0 95E5 6840 89CE 67EB B691";}]; + keys = [ { fingerprint = "DD52 6BC7 767D BA28 16C0 95E5 6840 89CE 67EB B691"; } ]; }; atagen = { name = "atagen"; @@ -2387,7 +2387,7 @@ List of NixOS maintainers. github = "AtaraxiaSjel"; githubId = 5314145; name = "Dmitriy"; - keys = [{fingerprint = "922D A6E7 58A0 FE4C FAB4 E4B2 FD26 6B81 0DF4 8DF2";}]; + keys = [ { fingerprint = "922D A6E7 58A0 FE4C FAB4 E4B2 FD26 6B81 0DF4 8DF2"; } ]; }; atemu = { name = "Atemu"; @@ -2429,7 +2429,7 @@ List of NixOS maintainers. email = "m.abdolirad@gmail.com"; github = "atkrad"; githubId = 351364; - keys = [{fingerprint = "0380 F2F8 DF7A BA1A E7DB D84A 1935 1496 62CA FDB8";}]; + keys = [ { fingerprint = "0380 F2F8 DF7A BA1A E7DB D84A 1935 1496 62CA FDB8"; } ]; }; atnnn = { email = "etienne@atnnn.com"; @@ -2448,7 +2448,7 @@ List of NixOS maintainers. email = "attila@dorn.haus"; github = "attilaolah"; githubId = 196617; - keys = [{fingerprint = "BF2E 4759 74D3 88E0 E30C 9604 07E6 C064 3FD1 42C3";}]; + keys = [ { fingerprint = "BF2E 4759 74D3 88E0 E30C 9604 07E6 C064 3FD1 42C3"; } ]; }; auchter = { name = "Michael Auchter"; @@ -2509,7 +2509,7 @@ List of NixOS maintainers. email = "sven@autumnal.de"; github = "sevenautumns"; githubId = 20627275; - keys = [{fingerprint = "6A2E 7FDD 1037 11A8 B996 E28E B051 064E 2FCA B71B";}]; + keys = [ { fingerprint = "6A2E 7FDD 1037 11A8 B996 E28E B051 064E 2FCA B71B"; } ]; }; av-gal = { email = "alex.v.galvin@gmail.com"; @@ -2564,14 +2564,14 @@ List of NixOS maintainers. email = "alex@averyan.ru"; github = "averyanalex"; githubId = 59499799; - keys = [{fingerprint = "A0FF 4F26 6B80 0B86 726D EA5B 3C23 C7BD 9945 2036";}]; + keys = [ { fingerprint = "A0FF 4F26 6B80 0B86 726D EA5B 3C23 C7BD 9945 2036"; } ]; }; averyvigolo = { email = "nixpkgs@averyv.me"; github = "averyvigolo"; githubId = 26379999; name = "Avery Vigolo"; - keys = [{fingerprint = "9848 B216 BCBE 29BB 1C6A E0D5 7A4D F5A8 CDBD 49C7";}]; + keys = [ { fingerprint = "9848 B216 BCBE 29BB 1C6A E0D5 7A4D F5A8 CDBD 49C7"; } ]; }; avh4 = { email = "gruen0aermel@gmail.com"; @@ -2584,14 +2584,14 @@ List of NixOS maintainers. github = "aviallon"; githubId = 7479436; name = "Antoine Viallon"; - keys = [{fingerprint = "4AC4 A28D 7208 FC6F 2B51 5EA9 D126 B13A B555 E16F";}]; + keys = [ { fingerprint = "4AC4 A28D 7208 FC6F 2B51 5EA9 D126 B13A B555 E16F"; } ]; }; avitex = { email = "theavitex@gmail.com"; github = "avitex"; githubId = 5110816; name = "avitex"; - keys = [{fingerprint = "271E 136C 178E 06FA EA4E B854 8B36 6C44 3CAB E942";}]; + keys = [ { fingerprint = "271E 136C 178E 06FA EA4E B854 8B36 6C44 3CAB E942"; } ]; }; avnik = { email = "avn@avnik.info"; @@ -2658,7 +2658,7 @@ List of NixOS maintainers. matrix = "@azahi:azahi.cc"; github = "azahi"; githubId = 22211000; - keys = [{fingerprint = "2688 0377 C31D 9E81 9BDF 83A8 C8C6 BDDB 3847 F72B";}]; + keys = [ { fingerprint = "2688 0377 C31D 9E81 9BDF 83A8 C8C6 BDDB 3847 F72B"; } ]; }; azazak123 = { email = "azazaka2002@gmail.com"; @@ -2701,14 +2701,14 @@ List of NixOS maintainers. github = "B4dM4n"; githubId = 448169; name = "Fabian Möller"; - keys = [{fingerprint = "6309 E212 29D4 DA30 AF24 BDED 754B 5C09 63C4 2C50";}]; + keys = [ { fingerprint = "6309 E212 29D4 DA30 AF24 BDED 754B 5C09 63C4 2C50"; } ]; }; babbaj = { name = "babbaj"; email = "babbaj45@gmail.com"; github = "babbaj"; githubId = 12820770; - keys = [{fingerprint = "6FBC A462 4EAF C69C A7C4 98C1 F044 3098 48A0 7CAC";}]; + keys = [ { fingerprint = "6FBC A462 4EAF C69C A7C4 98C1 F044 3098 48A0 7CAC"; } ]; }; babeuh = { name = "Raphael Le Goaller"; @@ -2735,7 +2735,7 @@ List of NixOS maintainers. matrix = "@badele:matrix.org"; github = "badele"; githubId = 2806307; - keys = [{fingerprint = "00F4 21C4 C537 7BA3 9820 E13F 6B95 E13D E469 CC5D";}]; + keys = [ { fingerprint = "00F4 21C4 C537 7BA3 9820 E13F 6B95 E13D E469 CC5D"; } ]; }; badmutex = { email = "github@badi.sh"; @@ -2862,7 +2862,7 @@ List of NixOS maintainers. github = "wandersoncferreira"; githubId = 17708295; name = "Wanderson Ferreira"; - keys = [{fingerprint = "A3E1 C409 B705 50B3 BF41 492B 5684 0A61 4DBE 37AE";}]; + keys = [ { fingerprint = "A3E1 C409 B705 50B3 BF41 492B 5684 0A61 4DBE 37AE"; } ]; }; bashsu = { name = "Joeal Subash"; @@ -2876,14 +2876,14 @@ List of NixOS maintainers. matrix = "@bastaynav:matrix.org"; github = "bastaynav"; githubId = 6987136; - keys = [{fingerprint = "2C6D 37D4 6AA1 DCDA BE8D F346 43E2 CF4C 01B9 4940";}]; + keys = [ { fingerprint = "2C6D 37D4 6AA1 DCDA BE8D F346 43E2 CF4C 01B9 4940"; } ]; }; BastianAsmussen = { name = "Bastian Asmussen"; email = "bastian@asmussen.tech"; github = "BastianAsmussen"; githubId = 76102128; - keys = [{fingerprint = "3B11 7469 0893 85E7 16C2 7CD9 0FE5 A355 DBC9 2568";}]; + keys = [ { fingerprint = "3B11 7469 0893 85E7 16C2 7CD9 0FE5 A355 DBC9 2568"; } ]; }; basvandijk = { email = "v.dijk.bas@gmail.com"; @@ -2915,7 +2915,7 @@ List of NixOS maintainers. matrix = "@baukexyz:matrix.org"; github = "Bauke"; githubId = 19501722; - keys = [{fingerprint = "C593 27B5 9D0F 2622 23F6 1D03 C1C0 F299 52BC F558";}]; + keys = [ { fingerprint = "C593 27B5 9D0F 2622 23F6 1D03 C1C0 F299 52BC F558"; } ]; }; bb2020 = { github = "bb2020"; @@ -3044,21 +3044,21 @@ List of NixOS maintainers. email = "blcknc@pm.me"; github = "bellackn"; githubId = 32039602; - keys = [{fingerprint = "2B46 58FF 887A 8366 F88B BE92 CF83 0BB3 B973 9A6A";}]; + keys = [ { fingerprint = "2B46 58FF 887A 8366 F88B BE92 CF83 0BB3 B973 9A6A"; } ]; }; ben9986 = { name = "Ben Carmichael"; email = "ben9986.unvmn@passinbox.com"; github = "Ben9986"; githubId = 38633150; - keys = [{fingerprint = "03C7 A587 74B3 F0E8 CE1F 4F8E ABBC DD77 69BC D3B0";}]; + keys = [ { fingerprint = "03C7 A587 74B3 F0E8 CE1F 4F8E ABBC DD77 69BC D3B0"; } ]; }; benaryorg = { name = "benaryorg"; email = "binary@benary.org"; github = "benaryorg"; githubId = 6145260; - keys = [{fingerprint = "804B 6CB8 AED5 61D9 3DAD 4DC5 E2F2 2C5E DF20 119D";}]; + keys = [ { fingerprint = "804B 6CB8 AED5 61D9 3DAD 4DC5 E2F2 2C5E DF20 119D"; } ]; }; benchand = { name = "Ben Chand"; @@ -3078,14 +3078,14 @@ List of NixOS maintainers. email = "b.broich@posteo.de"; github = "BenediktBroich"; githubId = 32903896; - keys = [{fingerprint = "CB5C 7B3C 3E6F 2A59 A583 A90A 8A60 0376 7BE9 5976";}]; + keys = [ { fingerprint = "CB5C 7B3C 3E6F 2A59 A583 A90A 8A60 0376 7BE9 5976"; } ]; }; benesim = { name = "Benjamin Isbarn"; email = "benjamin.isbarn@gmail.com"; github = "BeneSim"; githubId = 29384538; - keys = [{fingerprint = "D35E C9CE E631 638F F1D8 B401 6F0E 410D C3EE D02";}]; + keys = [ { fingerprint = "D35E C9CE E631 638F F1D8 B401 6F0E 410D C3EE D02"; } ]; }; bengsparks = { email = "benjamin.sparks@protonmail.com"; @@ -3110,7 +3110,7 @@ List of NixOS maintainers. email = "benjaminedwardwebb@gmail.com"; github = "benjaminedwardwebb"; githubId = 7118777; - keys = [{fingerprint = "E9A3 7864 2165 28CE 507C CA82 72EA BF75 C331 CD25";}]; + keys = [ { fingerprint = "E9A3 7864 2165 28CE 507C CA82 72EA BF75 C331 CD25"; } ]; }; benkuhn = { email = "ben@ben-kuhn.com"; @@ -3123,7 +3123,7 @@ List of NixOS maintainers. github = "benlemasurier"; githubId = 47993; name = "Ben LeMasurier"; - keys = [{fingerprint = "0FD4 7407 EFD4 8FD8 8BF5 87B3 248D 430A E8E7 4189";}]; + keys = [ { fingerprint = "0FD4 7407 EFD4 8FD8 8BF5 87B3 248D 430A E8E7 4189"; } ]; }; benley = { email = "benley@gmail.com"; @@ -3173,7 +3173,7 @@ List of NixOS maintainers. email = "nicolas@normie.dev"; github = "berbiche"; githubId = 20448408; - keys = [{fingerprint = "D446 E58D 87A0 31C7 EC15 88D7 B461 2924 45C6 E696";}]; + keys = [ { fingerprint = "D446 E58D 87A0 31C7 EC15 88D7 B461 2924 45C6 E696"; } ]; }; berce = { email = "bert.moens@gmail.com"; @@ -3204,7 +3204,7 @@ List of NixOS maintainers. email = "eric.berquist@gmail.com"; github = "berquist"; githubId = 727571; - keys = [{fingerprint = "AAD4 3B70 A504 9675 CFC8 B101 BAFD 205D 5FA2 B329";}]; + keys = [ { fingerprint = "AAD4 3B70 A504 9675 CFC8 B101 BAFD 205D 5FA2 B329"; } ]; }; berrij = { email = "jonathan@berrisch.biz"; @@ -3212,7 +3212,7 @@ List of NixOS maintainers. name = "Jonathan Berrisch"; github = "BerriJ"; githubId = 37799358; - keys = [{fingerprint = "42 B6 CC90 6 A91 EA4F 8 A7E 315 B 30 DC 5398 152 C 5310";}]; + keys = [ { fingerprint = "42 B6 CC90 6 A91 EA4F 8 A7E 315 B 30 DC 5398 152 C 5310"; } ]; }; berryp = { email = "berryphillips@gmail.com"; @@ -3225,7 +3225,7 @@ List of NixOS maintainers. email = "berto.f@protonmail.com"; github = "bertof"; githubId = 9915675; - keys = [{fingerprint = "17C5 1EF9 C0FE 2EB2 FE56 BB53 FE98 AE5E C52B 1056";}]; + keys = [ { fingerprint = "17C5 1EF9 C0FE 2EB2 FE56 BB53 FE98 AE5E C52B 1056"; } ]; }; betaboon = { email = "betaboon@0x80.ninja"; @@ -3238,7 +3238,7 @@ List of NixOS maintainers. email = "nixpkgs@beviu.com"; github = "beviu"; githubId = 56923875; - keys = [{fingerprint = "30D6 A755 E3C3 5797 CBBB 05B6 CD20 2E66 5CAD 7D06";}]; + keys = [ { fingerprint = "30D6 A755 E3C3 5797 CBBB 05B6 CD20 2E66 5CAD 7D06"; } ]; }; bew = { email = "benoit.dechezelles@gmail.com"; @@ -3322,7 +3322,7 @@ List of NixOS maintainers. github = "Binary-Eater"; githubId = 10691440; name = "Rahul Rameshbabu"; - keys = [{fingerprint = "678A 8DF1 D9F2 B51B 7110 BE53 FF24 7B3E 5411 387B";}]; + keys = [ { fingerprint = "678A 8DF1 D9F2 B51B 7110 BE53 FF24 7B3E 5411 387B"; } ]; }; binarycat = { email = "binarycat@envs.net"; @@ -3394,7 +3394,7 @@ List of NixOS maintainers. email = "blankparticle@gmail.com"; github = "BlankParticle"; githubId = 130567419; - keys = [{fingerprint = "1757 64C3 7065 AA8D 614D 41C9 0ACE 126D 7B35 9261";}]; + keys = [ { fingerprint = "1757 64C3 7065 AA8D 614D 41C9 0ACE 126D 7B35 9261"; } ]; }; blanky0230 = { email = "blanky0230@gmail.com"; @@ -3408,7 +3408,7 @@ List of NixOS maintainers. name = "Brian Lee"; github = "bleetube"; githubId = 77934086; - keys = [{fingerprint = "4CA3 48F6 8FE1 1777 8EDA 3860 B9A2 C1B0 25EC 2C55";}]; + keys = [ { fingerprint = "4CA3 48F6 8FE1 1777 8EDA 3860 B9A2 C1B0 25EC 2C55"; } ]; }; blenderfreaky = { name = "blenderfreaky"; @@ -3560,7 +3560,7 @@ List of NixOS maintainers. matrix = "@bonus:bonusplay.pl"; github = "BonusPlay"; githubId = 8405359; - keys = [{fingerprint = "8279 6487 A4CA 2A28 E8B3 3CD6 C7F9 9743 6A20 4683";}]; + keys = [ { fingerprint = "8279 6487 A4CA 2A28 E8B3 3CD6 C7F9 9743 6A20 4683"; } ]; }; booklearner = { name = "booklearner"; @@ -3568,7 +3568,7 @@ List of NixOS maintainers. matrix = "@booklearner:matrix.org"; github = "booklearner"; githubId = 103979114; - keys = [{fingerprint = "17C7 95D4 871C 2F87 83C8 053D 0C61 C4E5 907F 76C8";}]; + keys = [ { fingerprint = "17C7 95D4 871C 2F87 83C8 053D 0C61 C4E5 907F 76C8"; } ]; }; booniepepper = { name = "J.R. Hill"; @@ -3637,14 +3637,14 @@ List of NixOS maintainers. matrix = "@soispha:vhack.eu"; github = "bpeetz"; githubId = 140968250; - keys = [{fingerprint = "8321 ED3A 8DB9 99A5 1F3B F80F F268 2914 EA42 DE26";}]; + keys = [ { fingerprint = "8321 ED3A 8DB9 99A5 1F3B F80F F268 2914 EA42 DE26"; } ]; }; Br1ght0ne = { email = "brightone@protonmail.com"; github = "Br1ght0ne"; githubId = 12615679; name = "Oleksii Filonenko"; - keys = [{fingerprint = "F549 3B7F 9372 5578 FDD3 D0B8 A1BC 8428 323E CFE8";}]; + keys = [ { fingerprint = "F549 3B7F 9372 5578 FDD3 D0B8 A1BC 8428 323E CFE8"; } ]; }; br337 = { email = "brian.porumb@proton.me"; @@ -3705,7 +3705,7 @@ List of NixOS maintainers. github = "bretek"; githubId = 79257746; name = "Joseph Madden"; - keys = [{fingerprint = "3CF8 E983 2219 AB4B 0E19 158E 6112 1921 C9F8 117C";}]; + keys = [ { fingerprint = "3CF8 E983 2219 AB4B 0E19 158E 6112 1921 C9F8 117C"; } ]; }; brettlyons = { email = "blyons@fastmail.com"; @@ -3730,7 +3730,7 @@ List of NixOS maintainers. email = "brian@linuxpenguins.xyz"; github = "brianmay"; githubId = 112729; - keys = [{fingerprint = "D636 5126 A92D B560 C627 ACED 1784 577F 811F 6EAC";}]; + keys = [ { fingerprint = "D636 5126 A92D B560 C627 ACED 1784 577F 811F 6EAC"; } ]; }; brianmcgee = { name = "Brian McGee"; @@ -3749,14 +3749,14 @@ List of NixOS maintainers. email = "hello@bricked.dev"; github = "brckd"; githubId = 92804487; - keys = [{fingerprint = "58A2 81E6 2FBD 6E4E 664C B603 7B4D 2A02 BB0E C28C";}]; + keys = [ { fingerprint = "58A2 81E6 2FBD 6E4E 664C B603 7B4D 2A02 BB0E C28C"; } ]; }; bricklou = { name = "Bricklou"; email = "louis13.bailleau@gmail.com"; github = "bricklou"; githubId = 15181236; - keys = [{fingerprint = "AE1E 3B80 7727 C974 B972 AB3C C324 01C3 BF52 1179";}]; + keys = [ { fingerprint = "AE1E 3B80 7727 C974 B972 AB3C C324 01C3 BF52 1179"; } ]; }; britter = { name = "Benedikt Ritter"; @@ -3769,7 +3769,7 @@ List of NixOS maintainers. github = "brhoades"; githubId = 4763746; name = "Billy Rhoades"; - keys = [{fingerprint = "BF4FCB85C69989B4ED95BF938AE74787A4B7C07E";}]; + keys = [ { fingerprint = "BF4FCB85C69989B4ED95BF938AE74787A4B7C07E"; } ]; }; broke = { email = "broke@in-fucking.space"; @@ -3794,7 +3794,7 @@ List of NixOS maintainers. email = "bsc@brsvh.org"; github = "brsvh"; githubId = 63050399; - keys = [{fingerprint = "7B74 0DB9 F2AC 6D3B 226B C530 78D7 4502 D92E 0218";}]; + keys = [ { fingerprint = "7B74 0DB9 F2AC 6D3B 226B C530 78D7 4502 D92E 0218"; } ]; matrix = "@brsvh:mozilla.org"; name = "Burgess Chang"; }; @@ -3864,7 +3864,7 @@ List of NixOS maintainers. github = "Builditluc"; githubId = 37375448; name = "Builditluc"; - keys = [{fingerprint = "FF16E475723B8C1E57A6B2569374074AE2D6F20E";}]; + keys = [ { fingerprint = "FF16E475723B8C1E57A6B2569374074AE2D6F20E"; } ]; }; buurro = { email = "marcoburro98@gmail.com"; @@ -3956,8 +3956,8 @@ List of NixOS maintainers. github = "c4patino"; githubId = 79673111; keys = [ - {fingerprint = "EA60 D516 A926 7532 369D 3E67 E161 DF22 9EC1 280E";} - {fingerprint = "D088 A5AF C45B 78D1 CD4F 457C 6957 B3B6 46F2 BB4E";} + { fingerprint = "EA60 D516 A926 7532 369D 3E67 E161 DF22 9EC1 280E"; } + { fingerprint = "D088 A5AF C45B 78D1 CD4F 457C 6957 B3B6 46F2 BB4E"; } ]; }; caarlos0 = { @@ -3973,8 +3973,8 @@ List of NixOS maintainers. name = "Vladimir Serov"; keys = [ # compare with https://keybase.io/cab404 - {fingerprint = "1BB96810926F4E715DEF567E6BA7C26C3FDF7BB3";} - {fingerprint = "1EBC648C64D6045463013B3EB7EFFC271D55DB8A";} + { fingerprint = "1BB96810926F4E715DEF567E6BA7C26C3FDF7BB3"; } + { fingerprint = "1EBC648C64D6045463013B3EB7EFFC271D55DB8A"; } ]; }; CactiChameleon9 = { @@ -3996,8 +3996,8 @@ List of NixOS maintainers. github = "cafkafk"; githubId = 89321978; keys = [ - {fingerprint = "7B9E E848 D074 AE03 7A0C 651A 8ED4 DEF7 375A 30C8";} - {fingerprint = "208A 2A66 8A2F CDE7 B5D3 8F64 CDDC 792F 6552 51ED";} + { fingerprint = "7B9E E848 D074 AE03 7A0C 651A 8ED4 DEF7 375A 30C8"; } + { fingerprint = "208A 2A66 8A2F CDE7 B5D3 8F64 CDDC 792F 6552 51ED"; } ]; }; cageyv = { @@ -4006,7 +4006,7 @@ List of NixOS maintainers. githubId = 51059484; name = "Vladmir Samoylov"; keys = [ - {fingerprint = "8916 F727 734E 77AB 437F A33A 19AB 76F5 CEE1 1392";} + { fingerprint = "8916 F727 734E 77AB 437F A33A 19AB 76F5 CEE1 1392"; } ]; }; CaiqueFigueiredo = { @@ -4046,8 +4046,8 @@ List of NixOS maintainers. githubId = 16057677; name = "Callum Leslie"; keys = [ - {fingerprint = "BC82 4BB5 1656 D144 285E A0EC D382 C4AF EECE AA90";} - {fingerprint = "890B 06FB 209A 3E44 9491 C028 03B0 1F42 7831 BCFD";} + { fingerprint = "BC82 4BB5 1656 D144 285E A0EC D382 C4AF EECE AA90"; } + { fingerprint = "890B 06FB 209A 3E44 9491 C028 03B0 1F42 7831 BCFD"; } ]; }; calvertvl = { @@ -4110,7 +4110,7 @@ List of NixOS maintainers. github = "cameronraysmith"; githubId = 420942; name = "Cameron Smith"; - keys = [{fingerprint = "3F14 C258 856E 88AE E0F9 661E FF04 3B36 8811 DD1C";}]; + keys = [ { fingerprint = "3F14 C258 856E 88AE E0F9 661E FF04 3B36 8811 DD1C"; } ]; }; cameronyule = { email = "cameron@cameronyule.com"; @@ -4165,7 +4165,7 @@ List of NixOS maintainers. email = "kiran@ostrolenk.co.uk"; github = "CardboardTurkey"; githubId = 34030186; - keys = [{fingerprint = "8BC7 74E4 A2EC 7507 3B61 A647 0BBB 1C8B 1C36 39EE";}]; + keys = [ { fingerprint = "8BC7 74E4 A2EC 7507 3B61 A647 0BBB 1C8B 1C36 39EE"; } ]; }; carloscraveiro = { email = "carlos.craveiro@usp.br"; @@ -4400,7 +4400,7 @@ List of NixOS maintainers. github = "LostAttractor"; githubId = 46527539; name = "ChaosAttractor"; - keys = [{fingerprint = "A137 4415 DB7C 6439 10EA 5BF1 0FEE 4E47 5940 E125";}]; + keys = [ { fingerprint = "A137 4415 DB7C 6439 10EA 5BF1 0FEE 4E47 5940 E125"; } ]; }; charain = { email = "charain_li@outlook.com"; @@ -4442,7 +4442,7 @@ List of NixOS maintainers. email = "chayleaf-nix@pavluk.org"; github = "chayleaf"; githubId = 9590981; - keys = [{fingerprint = "4314 3701 154D 9E5F 7051 7ECF 7817 1AD4 6227 E68E";}]; + keys = [ { fingerprint = "4314 3701 154D 9E5F 7051 7ECF 7817 1AD4 6227 E68E"; } ]; matrix = "@chayleaf:matrix.pavluk.org"; name = "Anna Pavlyuk"; }; @@ -4482,7 +4482,7 @@ List of NixOS maintainers. githubId = 20300586; matrix = "@sammy:cherrykitten.dev"; name = "CherryKitten"; - keys = [{fingerprint = "264C FA1A 194C 585D F822 F673 C01A 7CBB A617 BD5F";}]; + keys = [ { fingerprint = "264C FA1A 194C 585D F822 F673 C01A 7CBB A617 BD5F"; } ]; }; cherrypiejam = { github = "cherrypiejam"; @@ -4505,14 +4505,14 @@ List of NixOS maintainers. name = "Diego Rodriguez"; github = "Chili-Man"; githubId = 631802; - keys = [{fingerprint = "099E 3F97 FA08 3D47 8C75 EBEC E0EB AD78 F019 0BD9";}]; + keys = [ { fingerprint = "099E 3F97 FA08 3D47 8C75 EBEC E0EB AD78 F019 0BD9"; } ]; }; chillcicada = { email = "2210227279@qq.com"; name = "chillcicada"; github = "chillcicada"; githubId = 116548943; - keys = [{fingerprint = "734C 20B3 33C4 FAB3 0BD0 743A 34C2 1231 0A99 754B";}]; + keys = [ { fingerprint = "734C 20B3 33C4 FAB3 0BD0 743A 34C2 1231 0A99 754B"; } ]; }; chiroptical = { email = "chiroptical@gmail.com"; @@ -4630,7 +4630,7 @@ List of NixOS maintainers. github = "christoph-heiss"; githubId = 7571069; name = "Christoph Heiss"; - keys = [{fingerprint = "9C56 1D64 30B2 8D6B DCBC 9CEB 73D5 E7FD EE3D E49A";}]; + keys = [ { fingerprint = "9C56 1D64 30B2 8D6B DCBC 9CEB 73D5 E7FD EE3D E49A"; } ]; }; christophcharles = { github = "christophcharles"; @@ -4648,7 +4648,7 @@ List of NixOS maintainers. github = "chrjabs"; githubId = 98587286; name = "Christoph Jabs"; - keys = [{fingerprint = "47D6 1FEB CD86 F3EC D2E3 D68A 83D0 74F3 48B2 FD9D";}]; + keys = [ { fingerprint = "47D6 1FEB CD86 F3EC D2E3 D68A 83D0 74F3 48B2 FD9D"; } ]; }; chrpinedo = { github = "chrpinedo"; @@ -4666,7 +4666,7 @@ List of NixOS maintainers. email = "nixos@chuang.cz"; github = "chuangzhu"; githubId = 31200881; - keys = [{fingerprint = "5D03 A5E6 0754 A3E3 CA57 5037 E838 CED8 1CFF D3F9";}]; + keys = [ { fingerprint = "5D03 A5E6 0754 A3E3 CA57 5037 E838 CED8 1CFF D3F9"; } ]; }; chvp = { email = "nixpkgs@cvpetegem.be"; @@ -4692,7 +4692,7 @@ List of NixOS maintainers. email = "cig0.github@gmail.com"; github = "cig0"; githubId = 394089; - keys = [{fingerprint = "1828 B459 DB9A 7EE2 03F4 7E6E AFBE ACC5 5D93 84A0";}]; + keys = [ { fingerprint = "1828 B459 DB9A 7EE2 03F4 7E6E AFBE ACC5 5D93 84A0"; } ]; }; cigrainger = { name = "Christopher Grainger"; @@ -4728,7 +4728,7 @@ List of NixOS maintainers. github = "RealityAnomaly"; githubId = 5567402; name = "Alex Zero"; - keys = [{fingerprint = "A0AA 4646 B8F6 9D45 4553 5A88 A515 50ED B450 302C";}]; + keys = [ { fingerprint = "A0AA 4646 B8F6 9D45 4553 5A88 A515 50ED B450 302C"; } ]; }; cizra = { email = "todurov+nix@gmail.com"; @@ -4789,7 +4789,7 @@ List of NixOS maintainers. github = "clebs"; githubId = 1059661; name = "Borja Clemente"; - keys = [{fingerprint = "C4E1 58BD FD33 3C77 B6C7 178E 2539 757E F64C 60DD";}]; + keys = [ { fingerprint = "C4E1 58BD FD33 3C77 B6C7 178E 2539 757E F64C 60DD"; } ]; }; cleeyv = { email = "cleeyv@riseup.net"; @@ -4858,7 +4858,7 @@ List of NixOS maintainers. github = "cmars"; githubId = 23741; name = "Casey Marshall"; - keys = [{fingerprint = "6B78 7E5F B493 FA4F D009 5D10 6DEC 2758 ACD5 A973";}]; + keys = [ { fingerprint = "6B78 7E5F B493 FA4F D009 5D10 6DEC 2758 ACD5 A973"; } ]; }; cmcdragonkai = { email = "roger.qiu@matrix.ai"; @@ -4913,7 +4913,7 @@ List of NixOS maintainers. github = "Coca162"; githubId = 62479942; name = "Coca"; - keys = [{fingerprint = "99CB 86FF 62BB 7DA4 8903 B16D 0328 2DF8 8179 AB19";}]; + keys = [ { fingerprint = "99CB 86FF 62BB 7DA4 8903 B16D 0328 2DF8 8179 AB19"; } ]; }; cococolanosugar = { name = "George Xu"; @@ -4932,7 +4932,7 @@ List of NixOS maintainers. github = "code-asher"; githubId = 45609798; name = "Asher"; - keys = [{fingerprint = "6E3A FA6D 915C C2A4 D26F C53E 7BB4 BA9C 783D 2BBC";}]; + keys = [ { fingerprint = "6E3A FA6D 915C C2A4 D26F C53E 7BB4 BA9C 783D 2BBC"; } ]; }; codebam = { name = "Sean Behan"; @@ -4940,7 +4940,7 @@ List of NixOS maintainers. matrix = "@codebam:fedora.im"; github = "codebam"; githubId = 6035884; - keys = [{fingerprint = "42CD E212 593C F2FD C723 48A8 0F6D 5021 A87F 92BA";}]; + keys = [ { fingerprint = "42CD E212 593C F2FD C723 48A8 0F6D 5021 A87F 92BA"; } ]; }; codec = { email = "codec@fnord.cx"; @@ -4970,7 +4970,7 @@ List of NixOS maintainers. name = "Guy Boldon"; github = "codifryed"; githubId = 27779510; - keys = [{fingerprint = "FDF5 EF67 8CC1 FE22 1845 6A22 CF7B BB5B C756 1BD3";}]; + keys = [ { fingerprint = "FDF5 EF67 8CC1 FE22 1845 6A22 CF7B BB5B C756 1BD3"; } ]; }; codsl = { email = "codsl@riseup.net"; @@ -4996,7 +4996,7 @@ List of NixOS maintainers. matrix = "@cofob:matrix.org"; github = "cofob"; githubId = 49928332; - keys = [{fingerprint = "5F3D 9D3D ECE0 8651 DE14 D29F ACAD 4265 E193 794D";}]; + keys = [ { fingerprint = "5F3D 9D3D ECE0 8651 DE14 D29F ACAD 4265 E193 794D"; } ]; }; Cogitri = { email = "oss@cogitri.dev"; @@ -5030,7 +5030,7 @@ List of NixOS maintainers. matrix = "@cole-h:matrix.org"; github = "cole-h"; githubId = 28582702; - keys = [{fingerprint = "68B8 0D57 B2E5 4AC3 EC1F 49B0 B37E 0F23 7101 6A4C";}]; + keys = [ { fingerprint = "68B8 0D57 B2E5 4AC3 EC1F 49B0 B37E 0F23 7101 6A4C"; } ]; }; colemickens = { email = "cole.mickens@gmail.com"; @@ -5168,8 +5168,8 @@ List of NixOS maintainers. matrix = "@corbansolo:matrix.org"; name = "Corban Raun"; keys = [ - {fingerprint = "6607 0B24 8CE5 64ED 22CE 0950 A697 A56F 1F15 1189";} - {fingerprint = "D8CB 816A B678 A4E6 1EC7 5325 230F 4AC1 53F9 0F29";} + { fingerprint = "6607 0B24 8CE5 64ED 22CE 0950 A697 A56F 1F15 1189"; } + { fingerprint = "D8CB 816A B678 A4E6 1EC7 5325 230F 4AC1 53F9 0F29"; } ]; }; corbinwunderlich = { @@ -5224,7 +5224,7 @@ List of NixOS maintainers. github = "cpu"; githubId = 292650; name = "Daniel McCarney"; - keys = [{fingerprint = "8026 D24A A966 BF9C D3CD CB3C 08FB 2BFC 470E 75B4";}]; + keys = [ { fingerprint = "8026 D24A A966 BF9C D3CD CB3C 08FB 2BFC 470E 75B4"; } ]; }; cr0n = { name = "cr0n"; @@ -5285,7 +5285,7 @@ List of NixOS maintainers. name = "Robert Medeiros"; github = "crimeminister"; githubId = 29072; - keys = [{fingerprint = "E3BD A35E 590A 8D29 701A 9723 F448 7FA0 4BC6 44F2";}]; + keys = [ { fingerprint = "E3BD A35E 590A 8D29 701A 9723 F448 7FA0 4BC6 44F2"; } ]; }; crinklywrappr = { email = "crinklywrappr@pm.me"; @@ -5310,7 +5310,7 @@ List of NixOS maintainers. name = "Jan Möller"; github = "croissong"; githubId = 4162215; - keys = [{fingerprint = "CE97 9DEE 904C 26AA 3716 78C2 96A4 38F9 EE72 572F";}]; + keys = [ { fingerprint = "CE97 9DEE 904C 26AA 3716 78C2 96A4 38F9 EE72 572F"; } ]; }; crschnick = { email = "crschnick@xpipe.io"; @@ -5324,14 +5324,14 @@ List of NixOS maintainers. github = "CRTified"; githubId = 2440581; name = "Carl Richard Theodor Schneider"; - keys = [{fingerprint = "2017 E152 BB81 5C16 955C E612 45BC C1E2 709B 1788";}]; + keys = [ { fingerprint = "2017 E152 BB81 5C16 955C E612 45BC C1E2 709B 1788"; } ]; }; Cryolitia = { name = "Cryolitia PukNgae"; email = "Cryolitia@gmail.com"; github = "Cryolitia"; githubId = 23723294; - keys = [{fingerprint = "1C3C 6547 538D 7152 310C 0EEA 84DD 0C01 30A5 4DF7";}]; + keys = [ { fingerprint = "1C3C 6547 538D 7152 310C 0EEA 84DD 0C01 30A5 4DF7"; } ]; }; cryptix = { email = "cryptix@riseup.net"; @@ -5391,7 +5391,7 @@ List of NixOS maintainers. github = "cust0dian"; githubId = 119854490; name = "Serg Nesterov"; - keys = [{fingerprint = "6E7D BA30 DB5D BA60 693C 3BE3 1512 F6EB 84AE CC8C";}]; + keys = [ { fingerprint = "6E7D BA30 DB5D BA60 693C 3BE3 1512 F6EB 84AE CC8C"; } ]; }; cwoac = { email = "oliver@codersoffortune.net"; @@ -5417,20 +5417,20 @@ List of NixOS maintainers. github = "CyberShadow"; githubId = 160894; - keys = [{fingerprint = "BBED 1B08 8CED 7F95 8917 FBE8 5004 F0FA D051 576D";}]; + keys = [ { fingerprint = "BBED 1B08 8CED 7F95 8917 FBE8 5004 F0FA D051 576D"; } ]; }; cynerd = { name = "Karel Kočí"; email = "cynerd@email.cz"; github = "Cynerd"; githubId = 3811900; - keys = [{fingerprint = "2B1F 70F9 5F1B 48DA 2265 A7FA A6BC 8B8C EB31 659B";}]; + keys = [ { fingerprint = "2B1F 70F9 5F1B 48DA 2265 A7FA A6BC 8B8C EB31 659B"; } ]; }; cyntheticfox = { email = "cyntheticfox@gh0st.sh"; github = "cyntheticfox"; githubId = 17628961; - keys = [{fingerprint = "73C1 C5DF 51E7 BB92 85E9 A262 5960 278C E235 F821";}]; + keys = [ { fingerprint = "73C1 C5DF 51E7 BB92 85E9 A262 5960 278C E235 F821"; } ]; matrix = "@houstdav000:gh0st.ems.host"; name = "Cynthia Fox"; }; @@ -5446,8 +5446,8 @@ List of NixOS maintainers. githubId = 2217136; name = "Ștefan D. Mihăilă"; keys = [ - {fingerprint = "CBC9 C7CC 51F0 4A61 3901 C723 6E68 A39B F16A 3ECB";} - {fingerprint = "7EAB 1447 5BBA 7DDE 7092 7276 6220 AD78 4622 0A52";} + { fingerprint = "CBC9 C7CC 51F0 4A61 3901 C723 6E68 A39B F16A 3ECB"; } + { fingerprint = "7EAB 1447 5BBA 7DDE 7092 7276 6220 AD78 4622 0A52"; } ]; }; cyplo = { @@ -5473,7 +5473,7 @@ List of NixOS maintainers. github = "d-goldin"; githubId = 43349662; name = "Dima"; - keys = [{fingerprint = "1C4E F4FE 7F8E D8B7 1E88 CCDF BAB1 D15F B7B4 D4CE";}]; + keys = [ { fingerprint = "1C4E F4FE 7F8E D8B7 1E88 CCDF BAB1 D15F B7B4 D4CE"; } ]; }; d3vil0p3r = { name = "Antonio Voza"; @@ -5516,7 +5516,7 @@ List of NixOS maintainers. email = "dadada@dadada.li"; github = "dadada"; githubId = 7216772; - keys = [{fingerprint = "D68C 8469 5C08 7E0F 733A 28D0 EEB8 D1CE 62C4 DFEA";}]; + keys = [ { fingerprint = "D68C 8469 5C08 7E0F 733A 28D0 EEB8 D1CE 62C4 DFEA"; } ]; }; dalance = { email = "dalance@gmail.com"; @@ -5535,7 +5535,7 @@ List of NixOS maintainers. github = "DAlperin"; githubId = 16063713; name = "Dov Alperin"; - keys = [{fingerprint = "4EED 5096 B925 86FA 1101 6673 7F2C 07B9 1B52 BB61";}]; + keys = [ { fingerprint = "4EED 5096 B925 86FA 1101 6673 7F2C 07B9 1B52 BB61"; } ]; }; damhiya = { name = "SoonWon Moon"; @@ -5585,7 +5585,7 @@ List of NixOS maintainers. email = "djc@djc.id.au"; github = "danc86"; githubId = 398575; - keys = [{fingerprint = "1C56 01F1 D70A B56F EABB 6BC0 26B5 AA2F DAF2 F30A";}]; + keys = [ { fingerprint = "1C56 01F1 D70A B56F EABB 6BC0 26B5 AA2F DAF2 F30A"; } ]; }; dancek = { email = "hannu.hartikainen@gmail.com"; @@ -5702,7 +5702,7 @@ List of NixOS maintainers. matrix = "@danth:danth.me"; github = "danth"; githubId = 28959268; - keys = [{fingerprint = "4779 D1D5 3C97 2EAE 34A5 ED3D D8AF C4BF 0567 0F9D";}]; + keys = [ { fingerprint = "4779 D1D5 3C97 2EAE 34A5 ED3D D8AF C4BF 0567 0F9D"; } ]; }; dariof4 = { name = "dariof4"; @@ -5758,7 +5758,7 @@ List of NixOS maintainers. email = "dasisdormax@mailbox.org"; github = "dasisdormax"; githubId = 3714905; - keys = [{fingerprint = "E59B A198 61B0 A9ED C1FA 3FB2 02BA 0D44 80CA 6C44";}]; + keys = [ { fingerprint = "E59B A198 61B0 A9ED C1FA 3FB2 02BA 0D44 80CA 6C44"; } ]; name = "Maximilian Wende"; }; dasj19 = { @@ -5784,7 +5784,7 @@ List of NixOS maintainers. githubId = 28595242; name = "DataHearth"; keys = [ - {fingerprint = "E8F9 0B80 908E 723D 0EDF 0916 5803 CDA5 9C26 A96A";} + { fingerprint = "E8F9 0B80 908E 723D 0EDF 0916 5803 CDA5 9C26 A96A"; } ]; }; dav-wolff = { @@ -5822,7 +5822,7 @@ List of NixOS maintainers. github = "david-r-cox"; githubId = 4259949; name = "David Cox"; - keys = [{fingerprint = "0056 A3F6 9918 1E0D 8FF0 BCDE 65BB 07FA A4D9 4634";}]; + keys = [ { fingerprint = "0056 A3F6 9918 1E0D 8FF0 BCDE 65BB 07FA A4D9 4634"; } ]; }; david-sawatzke = { email = "d-nix@sawatzke.dev"; @@ -5866,7 +5866,7 @@ List of NixOS maintainers. github = "davidtwco"; githubId = 1295100; name = "David Wood"; - keys = [{fingerprint = "5B08 313C 6853 E5BF FA91 A817 0176 0B4F 9F53 F154";}]; + keys = [ { fingerprint = "5B08 313C 6853 E5BF FA91 A817 0176 0B4F 9F53 F154"; } ]; }; davisrichard437 = { email = "davisrichard437@gmail.com"; @@ -5927,7 +5927,7 @@ List of NixOS maintainers. github = "dbirks"; githubId = 7545665; name = "David Birks"; - keys = [{fingerprint = "B26F 9AD8 DA20 3392 EF87 C61A BB99 9F83 D9A1 9A36";}]; + keys = [ { fingerprint = "B26F 9AD8 DA20 3392 EF87 C61A BB99 9F83 D9A1 9A36"; } ]; }; dblsaiko = { email = "me@dblsaiko.net"; @@ -5952,7 +5952,7 @@ List of NixOS maintainers. github = "dbrgn"; githubId = 105168; name = "Danilo B."; - keys = [{fingerprint = "20EE 002D 778A E197 EF7D 0D2C B993 FF98 A90C 9AB1";}]; + keys = [ { fingerprint = "20EE 002D 778A E197 EF7D 0D2C B993 FF98 A90C 9AB1"; } ]; }; dbrock = { email = "daniel@brockman.se"; @@ -5999,14 +5999,14 @@ List of NixOS maintainers. email = "dearrude@tfwno.gf"; github = "DearRude"; githubId = 30749142; - keys = [{fingerprint = "4E35 F2E5 2132 D654 E815 A672 DB2C BC24 2868 6000";}]; + keys = [ { fingerprint = "4E35 F2E5 2132 D654 E815 A672 DB2C BC24 2868 6000"; } ]; }; debling = { name = "Denilson S. Ebling"; email = "d.ebling8@gmail.com"; github = "debling"; githubId = 32403873; - keys = [{fingerprint = "3EDD 9C88 B0F2 58F8 C25F 5D2C CCBC 8AA1 AF06 2142";}]; + keys = [ { fingerprint = "3EDD 9C88 B0F2 58F8 C25F 5D2C CCBC 8AA1 AF06 2142"; } ]; }; declan = { name = "Declan Rixon"; @@ -6018,14 +6018,14 @@ List of NixOS maintainers. github = "deeengan"; githubId = 87693324; name = "Dee Engan"; - keys = [{fingerprint = "9C24 79F5 F0CE 48F4 00EE 4A5B B8ED 46EB 468B F72D";}]; + keys = [ { fingerprint = "9C24 79F5 F0CE 48F4 00EE 4A5B B8ED 46EB 468B F72D"; } ]; }; deejayem = { email = "nixpkgs.bu5hq@simplelogin.com"; github = "deejayem"; githubId = 2564003; name = "David Morgan"; - keys = [{fingerprint = "9B43 6B14 77A8 79C2 6CDB 6604 C171 2510 02C2 00F2";}]; + keys = [ { fingerprint = "9B43 6B14 77A8 79C2 6CDB 6604 C171 2510 02C2 00F2"; } ]; }; deekahy = { email = "Lennart.Diego.Kahn@gmail.com"; @@ -6056,7 +6056,7 @@ List of NixOS maintainers. matrix = "@defelo:matrix.defelo.de"; github = "Defelo"; githubId = 41747605; - keys = [{fingerprint = "6130 3BBA D7D1 BF74 EFA4 4E3B E7FE 2087 E438 0E64";}]; + keys = [ { fingerprint = "6130 3BBA D7D1 BF74 EFA4 4E3B E7FE 2087 E438 0E64"; } ]; }; definfo = { name = "Adrien SUN"; @@ -6087,7 +6087,7 @@ List of NixOS maintainers. matrix = "@delafthi:matrix.org"; github = "delafthi"; githubId = 50531499; - keys = [{fingerprint = "6DBB 0BB9 AEE6 2C2A 8059 7E1C 0092 6686 9818 63CB";}]; + keys = [ { fingerprint = "6DBB 0BB9 AEE6 2C2A 8059 7E1C 0092 6686 9818 63CB"; } ]; }; delehef = { name = "Franklin Delehelle"; @@ -6444,7 +6444,7 @@ List of NixOS maintainers. matrix = "@dtc:diogotc.com"; github = "diogotcorreia"; githubId = 7467891; - keys = [{fingerprint = "111F 91B7 5F61 99D8 985B 4C70 12CF 31FD FF17 2B77";}]; + keys = [ { fingerprint = "111F 91B7 5F61 99D8 985B 4C70 12CF 31FD FF17 2B77"; } ]; }; diogox = { name = "Diogo Xavier"; @@ -6492,14 +6492,14 @@ List of NixOS maintainers. email = "hello@ditsuke.com"; github = "ditsuke"; githubId = 72784348; - keys = [{fingerprint = "8FD2 153F 4889 541A 54F1 E09E 71B6 C31C 8A5A 9D21";}]; + keys = [ { fingerprint = "8FD2 153F 4889 541A 54F1 E09E 71B6 C31C 8A5A 9D21"; } ]; }; dixslyf = { name = "Dixon Sean Low Yan Feng"; email = "dixonseanlow@protonmail.com"; github = "dixslyf"; githubId = 56017218; - keys = [{fingerprint = "E6F4 BFB4 8DE3 893F 68FC A15F FF5F 4B30 A41B BAC8";}]; + keys = [ { fingerprint = "E6F4 BFB4 8DE3 893F 68FC A15F FF5F 4B30 A41B BAC8"; } ]; }; Djabx = { email = "alexandre@badez.eu"; @@ -6636,7 +6636,7 @@ List of NixOS maintainers. email = "silkmoth@protonmail.com"; github = "asciimoth"; githubId = 91414737; - keys = [{fingerprint = "7D6B AE0A A98A FDE9 3396 E721 F87E 15B8 3AA7 3087";}]; + keys = [ { fingerprint = "7D6B AE0A A98A FDE9 3396 E721 F87E 15B8 3AA7 3087"; } ]; }; dominikh = { email = "dominik@honnef.co"; @@ -6648,7 +6648,7 @@ List of NixOS maintainers. github = "donovanglover"; githubId = 2374245; name = "Donovan Glover"; - keys = [{fingerprint = "EE7D 158E F9E7 660E 0C33 86B2 8FC5 F7D9 0A5D 8F4D";}]; + keys = [ { fingerprint = "EE7D 158E F9E7 660E 0C33 86B2 8FC5 F7D9 0A5D 8F4D"; } ]; }; donteatoreo = { name = "DontEatOreo"; @@ -6660,7 +6660,7 @@ List of NixOS maintainers. name = "Dopplerian"; github = "Dopplerian"; githubId = 53937537; - keys = [{fingerprint = "BBC4 C071 516B A147 8D07 F9DC D2FD E6EC 2E8C 2BF4";}]; + keys = [ { fingerprint = "BBC4 C071 516B A147 8D07 F9DC D2FD E6EC 2E8C 2BF4"; } ]; }; doriath = { email = "tomasz.zurkowski@gmail.com"; @@ -6698,7 +6698,7 @@ List of NixOS maintainers. github = "dottedmag"; githubId = 16120; name = "Misha Gusarov"; - keys = [{fingerprint = "A8DF 1326 9E5D 9A38 E57C FAC2 9D20 F650 3E33 8888";}]; + keys = [ { fingerprint = "A8DF 1326 9E5D 9A38 E57C FAC2 9D20 F650 3E33 8888"; } ]; }; dottybot = { name = "Scala Organization (dottybot)"; @@ -6723,7 +6723,7 @@ List of NixOS maintainers. github = "dpausp"; githubId = 1965950; name = "Tobias Stenzel"; - keys = [{fingerprint = "4749 0887 CF3B 85A1 6355 C671 78C7 DD40 DF23 FB16";}]; + keys = [ { fingerprint = "4749 0887 CF3B 85A1 6355 C671 78C7 DD40 DF23 FB16"; } ]; }; dpc = { email = "dpc@dpc.pw"; @@ -6731,7 +6731,7 @@ List of NixOS maintainers. githubId = 9209; matrix = "@dpc:matrix.org"; name = "Dawid Ciężarkiewicz"; - keys = [{fingerprint = "0402 11D2 0830 2D71 5792 8197 86BB 1D5B 5575 7D38";}]; + keys = [ { fingerprint = "0402 11D2 0830 2D71 5792 8197 86BB 1D5B 5575 7D38"; } ]; }; DPDmancul = { name = "Davide Peressoni"; @@ -6757,7 +6757,7 @@ List of NixOS maintainers. github = "dr460nf1r3"; githubId = 12834713; name = "Nico Jensch"; - keys = [{fingerprint = "D245 D484 F357 8CB1 7FD6 DA6B 67DB 29BF F3C9 6757";}]; + keys = [ { fingerprint = "D245 D484 F357 8CB1 7FD6 DA6B 67DB 29BF F3C9 6757"; } ]; }; dragonginger = { email = "dragonginger10@gmail.com"; @@ -6824,7 +6824,7 @@ List of NixOS maintainers. github = "drperceptron"; githubId = 92106371; name = "Dr Perceptron"; - keys = [{fingerprint = "7E38 89D9 B1A8 B381 C8DE A15F 95EB 6DFF 26D1 CEB0";}]; + keys = [ { fingerprint = "7E38 89D9 B1A8 B381 C8DE A15F 95EB 6DFF 26D1 CEB0"; } ]; }; DrSensor = { name = "Fahmi Akbar Wildana"; @@ -6839,7 +6839,7 @@ List of NixOS maintainers. matrix = "@drupol:matrix.org"; github = "drupol"; githubId = 252042; - keys = [{fingerprint = "85F3 72DF 4AF3 EF13 ED34 72A3 0AAF 2901 E804 0715";}]; + keys = [ { fingerprint = "85F3 72DF 4AF3 EF13 ED34 72A3 0AAF 2901 E804 0715"; } ]; }; DrymarchonShaun = { name = "Shaun"; @@ -6858,14 +6858,14 @@ List of NixOS maintainers. email = "daniel.salwasser@outlook.com"; github = "dsalwasser"; githubId = 148379503; - keys = [{fingerprint = "DBA9 AE6B 84A9 C08E C4AD 1E46 6CD2 0B2D 0655 BDF6";}]; + keys = [ { fingerprint = "DBA9 AE6B 84A9 C08E C4AD 1E46 6CD2 0B2D 0655 BDF6"; } ]; }; dschrempf = { name = "Dominik Schrempf"; email = "dominik.schrempf@gmail.com"; github = "dschrempf"; githubId = 5596239; - keys = [{fingerprint = "62BC E2BD 49DF ECC7 35C7 E153 875F 2BCF 163F 1B29";}]; + keys = [ { fingerprint = "62BC E2BD 49DF ECC7 35C7 E153 875F 2BCF 163F 1B29"; } ]; }; dseelp = { name = "dsee"; @@ -6897,7 +6897,7 @@ List of NixOS maintainers. matrix = "@dani0854:matrix.org"; github = "dani0854"; githubId = 32674935; - keys = [{fingerprint = "E033 FE26 0E62 224B B35C 75C9 DE8B 9CED 0696 C600";}]; + keys = [ { fingerprint = "E033 FE26 0E62 224B B35C 75C9 DE8B 9CED 0696 C600"; } ]; }; dsymbol = { name = "dsymbol"; @@ -6909,14 +6909,14 @@ List of NixOS maintainers. github = "dtomvan"; githubId = 51440893; name = "Tom van Dijk"; - keys = [{fingerprint = "D044 F07B 8863 B681 26BD 79FE 7A98 4C82 07AD BA51";}]; + keys = [ { fingerprint = "D044 F07B 8863 B681 26BD 79FE 7A98 4C82 07AD BA51"; } ]; }; dtzWill = { email = "w@wdtz.org"; github = "dtzWill"; githubId = 817330; name = "Will Dietz"; - keys = [{fingerprint = "389A 78CB CD88 5E0C 4701 DEB9 FD42 C7D0 D414 94C8";}]; + keys = [ { fingerprint = "389A 78CB CD88 5E0C 4701 DEB9 FD42 C7D0 D414 94C8"; } ]; }; dudymas = { email = "jeremy.white@cloudposse.com"; @@ -6936,8 +6936,8 @@ List of NixOS maintainers. githubId = 1749762; name = "Mikhail Klementev"; keys = [ - {fingerprint = "5AC8 C9A1 68C7 9451 1A91 2295 C990 5BA7 2B5E 02BB";} - {fingerprint = "5DD7 C6F6 0630 F08E DAE7 4711 1525 585D 1B43 C62A";} + { fingerprint = "5AC8 C9A1 68C7 9451 1A91 2295 C990 5BA7 2B5E 02BB"; } + { fingerprint = "5DD7 C6F6 0630 F08E DAE7 4711 1525 585D 1B43 C62A"; } ]; }; dunxen = { @@ -6946,14 +6946,14 @@ List of NixOS maintainers. github = "dunxen"; githubId = 3072149; name = "Duncan Dean"; - keys = [{fingerprint = "9484 44FC E03B 05BA 5AB0 591E C37B 1C1D 44C7 86EE";}]; + keys = [ { fingerprint = "9484 44FC E03B 05BA 5AB0 591E C37B 1C1D 44C7 86EE"; } ]; }; DutchGerman = { name = "Stefan Visser"; email = "stefan.visser@apm-ecampus.de"; github = "DutchGerman"; githubId = 60694691; - keys = [{fingerprint = "A7C9 3DC7 E891 046A 980F 2063 F222 A13B 2053 27A5";}]; + keys = [ { fingerprint = "A7C9 3DC7 E891 046A 980F 2063 F222 A13B 2053 27A5"; } ]; }; dvaerum = { email = "nixpkgs-maintainer@varum.dk"; @@ -7058,7 +7058,7 @@ List of NixOS maintainers. github = "e1mo"; githubId = 61651268; name = "Nina Fromm"; - keys = [{fingerprint = "67BE E563 43B6 420D 550E DF2A 6D61 7FD0 A85B AADA";}]; + keys = [ { fingerprint = "67BE E563 43B6 420D 550E DF2A 6D61 7FD0 A85B AADA"; } ]; }; eadwu = { email = "edmund.wu@protonmail.com"; @@ -7101,7 +7101,7 @@ List of NixOS maintainers. github = "ebbertd"; githubId = 20522234; name = "Daniel Ebbert"; - keys = [{fingerprint = "E765 FCA3 D9BF 7FDB 856E AD73 47BC 1559 27CB B9C7";}]; + keys = [ { fingerprint = "E765 FCA3 D9BF 7FDB 856E AD73 47BC 1559 27CB B9C7"; } ]; }; ebzzry = { email = "ebzzry@ebzzry.io"; @@ -7138,7 +7138,7 @@ List of NixOS maintainers. github = "eddsteel"; githubId = 206872; name = "Edd Steel"; - keys = [{fingerprint = "1BE8 48D7 6C7C 4C51 349D DDCC 3362 0159 D403 85A0";}]; + keys = [ { fingerprint = "1BE8 48D7 6C7C 4C51 349D DDCC 3362 0159 D403 85A0"; } ]; }; edef = { email = "edef@edef.eu"; @@ -7164,7 +7164,7 @@ List of NixOS maintainers. matrix = "@edgar.vincent:matrix.org"; github = "edgar-vincent"; githubId = 63352906; - keys = [{fingerprint = "922F CA48 5FDB 20B1 ED1B A61F 284D 11D3 33C4 D21B";}]; + keys = [ { fingerprint = "922F CA48 5FDB 20B1 ED1B A61F 284D 11D3 33C4 D21B"; } ]; }; edlimerkaj = { name = "Edli Merkaj"; @@ -7183,7 +7183,7 @@ List of NixOS maintainers. email = "ericdrex@gmail.com"; github = "edrex"; githubId = 14615; - keys = [{fingerprint = "AC47 2CCC 9867 4644 A9CF EB28 1C5C 1ED0 9F66 6824";}]; + keys = [ { fingerprint = "AC47 2CCC 9867 4644 A9CF EB28 1C5C 1ED0 9F66 6824"; } ]; matrix = "@edrex:matrix.org"; name = "Eric Drechsel"; }; @@ -7475,7 +7475,7 @@ List of NixOS maintainers. github = "emiliaaah"; githubId = 55017867; name = "Emilia"; - keys = [{fingerprint = "F772 3569 4B43 B599 73C2 A931 1EFB E941 B89B B810";}]; + keys = [ { fingerprint = "F772 3569 4B43 B599 73C2 A931 1EFB E941 B89B B810"; } ]; }; emilioziniades = { email = "emilioziniades@protonmail.com"; @@ -7587,7 +7587,7 @@ List of NixOS maintainers. email = "eownerdead@disroot.org"; github = "eownerdead"; githubId = 141208772; - keys = [{fingerprint = "4715 17D6 2495 A273 4DDB 5661 009E 5630 5CA5 4D63";}]; + keys = [ { fingerprint = "4715 17D6 2495 A273 4DDB 5661 009E 5630 5CA5 4D63"; } ]; }; eperuffo = { email = "info@emanueleperuffo.com"; @@ -7623,7 +7623,7 @@ List of NixOS maintainers. github = "erdnaxe"; githubId = 2663216; name = "Alexandre Iooss"; - keys = [{fingerprint = "2D37 1AD2 7E2B BC77 97E1 B759 6C79 278F 3FCD CC02";}]; + keys = [ { fingerprint = "2D37 1AD2 7E2B BC77 97E1 B759 6C79 278F 3FCD CC02"; } ]; }; ereslibre = { email = "ereslibre@ereslibre.es"; @@ -7663,7 +7663,7 @@ List of NixOS maintainers. github = "erictapen"; githubId = 11532355; name = "Kerstin Humm"; - keys = [{fingerprint = "F178 B4B4 6165 6D1B 7C15 B55D 4029 3358 C7B9 326B";}]; + keys = [ { fingerprint = "F178 B4B4 6165 6D1B 7C15 B55D 4029 3358 C7B9 326B"; } ]; }; ericthemagician = { email = "eric@ericyen.com"; @@ -7696,7 +7696,7 @@ List of NixOS maintainers. email = "erikeah@protonmail.com"; github = "erikeah"; githubId = 11900869; - keys = [{fingerprint = "4142 0380 C7F8 BCDA CC9E 7ABA 0FF3 076B 71F2 5DEF";}]; + keys = [ { fingerprint = "4142 0380 C7F8 BCDA CC9E 7ABA 0FF3 076B 71F2 5DEF"; } ]; name = "Erik Alonso"; }; erikryb = { @@ -7720,7 +7720,7 @@ List of NixOS maintainers. erooke = { email = "ethan@roo.ke"; name = "Ethan Rooke"; - keys = [{fingerprint = "B66B EB9F 6111 E44B 7588 8240 B287 4A77 049A 5923";}]; + keys = [ { fingerprint = "B66B EB9F 6111 E44B 7588 8240 B287 4A77 049A 5923"; } ]; github = "erooke"; githubId = 46689793; matrix = "@ethan:roo.ke"; @@ -7769,7 +7769,7 @@ List of NixOS maintainers. email = "esrh@esrh.me"; github = "eshrh"; githubId = 16175276; - keys = [{fingerprint = "E4CE B0F0 B2EC 09A3 9678 F294 CC7A 7E3C 6CF3 1343";}]; + keys = [ { fingerprint = "E4CE B0F0 B2EC 09A3 9678 F294 CC7A 7E3C 6CF3 1343"; } ]; }; EstebanMacanek = { name = "Esteban Macanek"; @@ -7783,8 +7783,8 @@ List of NixOS maintainers. githubId = 60861925; name = "Ethan Carter Edwards"; keys = [ - {fingerprint = "0E69 0F46 3457 D812 3387 C978 F93D DAFA 26EF 2458";} - {fingerprint = "2E51 F618 39D1 FA94 7A73 00C2 34C0 4305 D581 DBFE";} + { fingerprint = "0E69 0F46 3457 D812 3387 C978 F93D DAFA 26EF 2458"; } + { fingerprint = "2E51 F618 39D1 FA94 7A73 00C2 34C0 4305 D581 DBFE"; } ]; }; ethercrow = { @@ -7824,7 +7824,7 @@ List of NixOS maintainers. github = "etu"; githubId = 461970; name = "Elis Hirwing"; - keys = [{fingerprint = "67FE 98F2 8C44 CF22 1828 E12F D57E FA62 5C9A 925F";}]; + keys = [ { fingerprint = "67FE 98F2 8C44 CF22 1828 E12F D57E FA62 5C9A 925F"; } ]; }; eu90h = { email = "stefan@eu90h.com"; @@ -7862,7 +7862,7 @@ List of NixOS maintainers. matrix = "@evalexpr:matrix.org"; github = "evalexpr"; githubId = 23485511; - keys = [{fingerprint = "8129 5B85 9C5A F703 C2F4 1E29 2D1D 402E 1776 3DD6";}]; + keys = [ { fingerprint = "8129 5B85 9C5A F703 C2F4 1E29 2D1D 402E 1776 3DD6"; } ]; }; evan-goode = { email = "mail@evangoo.de"; @@ -7919,7 +7919,7 @@ List of NixOS maintainers. github = "evilbulgarian"; githubId = 1960413; name = "Vladi Gergov"; - keys = [{fingerprint = "50D5 67C5 D693 15A2 76F5 5634 3758 5F3C A9EC BFA4";}]; + keys = [ { fingerprint = "50D5 67C5 D693 15A2 76F5 5634 3758 5F3C A9EC BFA4"; } ]; }; evilmav = { email = "elenskiy.ilya@gmail.com"; @@ -8048,7 +8048,7 @@ List of NixOS maintainers. name = "Fabian Affolter"; github = "fabaff"; githubId = 116184; - keys = [{fingerprint = "2F6C 930F D3C4 7E38 6AFA 4EB4 E23C D2DD 36A4 397F";}]; + keys = [ { fingerprint = "2F6C 930F D3C4 7E38 6AFA 4EB4 E23C D2DD 36A4 397F"; } ]; }; fabiangd = { email = "fabian.g.droege@gmail.com"; @@ -8061,7 +8061,7 @@ List of NixOS maintainers. github = "fabianhauser"; githubId = 368799; name = "Fabian Hauser"; - keys = [{fingerprint = "50B7 11F4 3DFD 2018 DCE6 E8D0 8A52 A140 BEBF 7D2C";}]; + keys = [ { fingerprint = "50B7 11F4 3DFD 2018 DCE6 E8D0 8A52 A140 BEBF 7D2C"; } ]; }; fabianhjr = { email = "fabianhjr@protonmail.com"; @@ -8093,7 +8093,7 @@ List of NixOS maintainers. github = "fangpenlin"; githubId = 201615; name = "Fang-Pen Lin"; - keys = [{fingerprint = "7130 3454 A7CD 0F0A 941A F9A3 2A26 9964 AD29 2131";}]; + keys = [ { fingerprint = "7130 3454 A7CD 0F0A 941A F9A3 2A26 9964 AD29 2131"; } ]; }; farcaller = { name = "Vladimir Pouzanov"; @@ -8124,7 +8124,7 @@ List of NixOS maintainers. github = "fauxmight"; githubId = 53975399; name = "A Frederick Christensen"; - keys = [{fingerprint = "5A49 F4F9 3EDC 21E9 B7CC 4E94 9EEF 4142 5355 8AC4";}]; + keys = [ { fingerprint = "5A49 F4F9 3EDC 21E9 B7CC 4E94 9EEF 4142 5355 8AC4"; } ]; }; fazzi = { email = "faaris.ansari@proton.me"; @@ -8205,7 +8205,7 @@ List of NixOS maintainers. matrix = "@nicof2000:matrix.org"; github = "felbinger"; githubId = 26925347; - keys = [{fingerprint = "0797 D238 9769 CA1E 57B7 2ED9 2BA7 8116 87C9 0DE4";}]; + keys = [ { fingerprint = "0797 D238 9769 CA1E 57B7 2ED9 2BA7 8116 87C9 0DE4"; } ]; }; felipe-9 = { name = "Felipe Pinto"; @@ -8213,8 +8213,8 @@ List of NixOS maintainers. github = "Felipe-9"; githubId = 32753781; keys = [ - {fingerprint = "1533 0D57 3312 0936 AB38 3C9B 7D36 1E4B 83CD AEFB";} - {fingerprint = "2BD0 AD01 F91D A0DC 47DF 0AEE 7AA1 649F 6B71 42F2";} + { fingerprint = "1533 0D57 3312 0936 AB38 3C9B 7D36 1E4B 83CD AEFB"; } + { fingerprint = "2BD0 AD01 F91D A0DC 47DF 0AEE 7AA1 649F 6B71 42F2"; } ]; }; felipeqq2 = { @@ -8222,7 +8222,7 @@ List of NixOS maintainers. email = "nixpkgs@felipeqq2.rocks"; github = "felipeqq2"; githubId = 71830138; - keys = [{fingerprint = "7391 BF2D A2C3 B2C9 BE25 ACA9 C7A7 4616 F302 5DF4";}]; + keys = [ { fingerprint = "7391 BF2D A2C3 B2C9 BE25 ACA9 C7A7 4616 F302 5DF4"; } ]; matrix = "@felipeqq2:pub.solar"; }; felixalbrigtsen = { @@ -8267,7 +8267,7 @@ List of NixOS maintainers. # historical fingerprint = "6AB3 7A28 5420 9A41 82D9 0068 910A CB9F 6BD2 6F58"; } - {fingerprint = "7E08 6842 0934 AA1D 6821 1F2A 671E 39E6 744C 807D";} + { fingerprint = "7E08 6842 0934 AA1D 6821 1F2A 671E 39E6 744C 807D"; } ]; }; fernsehmuell = { @@ -8321,9 +8321,9 @@ List of NixOS maintainers. github = "fidgetingbits"; githubId = 13679876; keys = [ - {fingerprint = "U+vNNrQxJRj3NPu9EoD0LFZssRbk6LBg4YPN5nFvQvs";} - {fingerprint = "lX5ewVcaQLxuzqI92gujs3jFNki4d8qF+PATexMijoQ";} - {fingerprint = "elY15tXap1tddxbBVoUoAioe1u0RDWti5rc9cauSmwo";} + { fingerprint = "U+vNNrQxJRj3NPu9EoD0LFZssRbk6LBg4YPN5nFvQvs"; } + { fingerprint = "lX5ewVcaQLxuzqI92gujs3jFNki4d8qF+PATexMijoQ"; } + { fingerprint = "elY15tXap1tddxbBVoUoAioe1u0RDWti5rc9cauSmwo"; } ]; }; figboy9 = { @@ -8416,7 +8416,7 @@ List of NixOS maintainers. github = "Flakebi"; githubId = 6499211; name = "Sebastian Neubauer"; - keys = [{fingerprint = "2F93 661D AC17 EA98 A104 F780 ECC7 55EE 583C 1672";}]; + keys = [ { fingerprint = "2F93 661D AC17 EA98 A104 F780 ECC7 55EE 583C 1672"; } ]; }; Flameopathic = { email = "flameopathic@gmail.com"; @@ -8532,7 +8532,7 @@ List of NixOS maintainers. github = "fnune"; githubId = 16181067; name = "Fausto Núñez Alberro"; - keys = [{fingerprint = "668E 01D1 B129 3F42 0A0F 933A C880 6451 94A2 D562";}]; + keys = [ { fingerprint = "668E 01D1 B129 3F42 0A0F 933A C880 6451 94A2 D562"; } ]; }; foo-dogsquared = { email = "foodogsquared@foodogsquared.one"; @@ -8540,7 +8540,7 @@ List of NixOS maintainers. githubId = 34962634; matrix = "@foodogsquared:matrix.org"; name = "Gabriel Arazas"; - keys = [{fingerprint = "DDD7 D0BD 602E 564B AA04 FC35 1431 0D91 4115 2B92";}]; + keys = [ { fingerprint = "DDD7 D0BD 602E 564B AA04 FC35 1431 0D91 4115 2B92"; } ]; }; fooker = { email = "fooker@lab.sh"; @@ -8553,7 +8553,7 @@ List of NixOS maintainers. github = "foolnotion"; githubId = 844222; name = "Bogdan Burlacu"; - keys = [{fingerprint = "B722 6464 838F 8BDB 2BEA C8C8 5B0E FDDF BA81 6105";}]; + keys = [ { fingerprint = "B722 6464 838F 8BDB 2BEA C8C8 5B0E FDDF BA81 6105"; } ]; }; Forden = { email = "forden@zuku.tech"; @@ -8584,7 +8584,7 @@ List of NixOS maintainers. github = "fpletz"; githubId = 114159; name = "Franz Pletz"; - keys = [{fingerprint = "8A39 615D CE78 AF08 2E23 F303 846F DED7 7926 17B4";}]; + keys = [ { fingerprint = "8A39 615D CE78 AF08 2E23 F303 846F DED7 7926 17B4"; } ]; }; fps = { email = "mista.tapas@gmx.net"; @@ -8719,7 +8719,7 @@ List of NixOS maintainers. githubId = 10263813; name = "Dominic Shelton"; matrix = "@frogamic:beeper.com"; - keys = [{fingerprint = "779A 7CA8 D51C C53A 9C51 43F7 AAE0 70F0 67EC 00A5";}]; + keys = [ { fingerprint = "779A 7CA8 D51C C53A 9C51 43F7 AAE0 70F0 67EC 00A5"; } ]; }; frontear = { name = "Ali Rizvi"; @@ -8727,7 +8727,7 @@ List of NixOS maintainers. matrix = "@frontear:matrix.org"; github = "Frontear"; githubId = 31909298; - keys = [{fingerprint = "6A25 DEBE 41DB 0C15 3AB5 BB34 5290 E18B 8705 1A83";}]; + keys = [ { fingerprint = "6A25 DEBE 41DB 0C15 3AB5 BB34 5290 E18B 8705 1A83"; } ]; }; frontsideair = { email = "photonia@gmail.com"; @@ -8746,7 +8746,7 @@ List of NixOS maintainers. email = "luiz@lferraz.com"; github = "Fryuni"; githubId = 11063910; - keys = [{fingerprint = "2109 4B0E 560B 031E F539 62C8 2B56 8731 DB24 47EC";}]; + keys = [ { fingerprint = "2109 4B0E 560B 031E F539 62C8 2B56 8731 DB24 47EC"; } ]; }; fsagbuya = { email = "fa@m-labs.ph"; @@ -8808,7 +8808,7 @@ List of NixOS maintainers. github = "funkeleinhorn"; githubId = 103313934; name = "Funkeleinhorn"; - keys = [{fingerprint = "689D 1C81 DA0D 1EB2 F029 D24E C7BE A25A 0A33 5A72";}]; + keys = [ { fingerprint = "689D 1C81 DA0D 1EB2 F029 D24E C7BE A25A 0A33 5A72"; } ]; }; fusion809 = { email = "brentonhorne77@gmail.com"; @@ -8850,7 +8850,7 @@ List of NixOS maintainers. github = "fx-chun"; githubId = 40049608; name = "Faye Chun"; - keys = [{fingerprint = "ACB8 DB1F E88D A908 6332 BDB1 5A71 B010 2FD7 3FC0";}]; + keys = [ { fingerprint = "ACB8 DB1F E88D A908 6332 BDB1 5A71 B010 2FD7 3FC0"; } ]; }; fxfactorial = { email = "edgar.factorial@gmail.com"; @@ -8900,14 +8900,14 @@ List of NixOS maintainers. github = "gabyx"; githubId = 647437; name = "Gabriel Nützi"; - keys = [{fingerprint = "90AE CCB9 7AD3 4CE4 3AED 9402 E969 172A B075 7EB8";}]; + keys = [ { fingerprint = "90AE CCB9 7AD3 4CE4 3AED 9402 E969 172A B075 7EB8"; } ]; }; gador = { email = "florian.brandes@posteo.de"; github = "gador"; githubId = 1883533; name = "Florian Brandes"; - keys = [{fingerprint = "0200 3EF8 8D2B CF2D 8F00 FFDC BBB3 E40E 5379 7FD9";}]; + keys = [ { fingerprint = "0200 3EF8 8D2B CF2D 8F00 FFDC BBB3 E40E 5379 7FD9"; } ]; }; gaelj = { name = "Gaël James"; @@ -8921,7 +8921,7 @@ List of NixOS maintainers. name = "Gaël Reyrol"; github = "gaelreyrol"; githubId = 498465; - keys = [{fingerprint = "3492 D8FA ACFF 4C5F A56E 50B7 DFB9 B69A 2C42 7F61";}]; + keys = [ { fingerprint = "3492 D8FA ACFF 4C5F A56E 50B7 DFB9 B69A 2C42 7F61"; } ]; }; GaetanLepage = { email = "gaetan@glepage.com"; @@ -8947,14 +8947,14 @@ List of NixOS maintainers. name = "The Galaxy"; github = "ga1aksy"; githubId = 148551648; - keys = [{fingerprint = "48CA 3873 9E9F CA8E 76A0 835A E3DE CF85 4212 E1EA";}]; + keys = [ { fingerprint = "48CA 3873 9E9F CA8E 76A0 835A E3DE CF85 4212 E1EA"; } ]; }; gale-username = { name = "gale"; email = "git@galewebsite.com"; github = "gale-username"; githubId = 168143489; - keys = [{fingerprint = "1234 3726 9042 01F3 CE07 59BF A3B6 1E91 5508 F702";}]; + keys = [ { fingerprint = "1234 3726 9042 01F3 CE07 59BF A3B6 1E91 5508 F702"; } ]; }; galen = { github = "galenhuntington"; @@ -9086,7 +9086,7 @@ List of NixOS maintainers. email = "genericnerdyusername@proton.me"; github = "GenericNerdyUsername"; githubId = 111183546; - keys = [{fingerprint = "58CE D4BE 6B10 149E DA80 A990 2F48 6356 A4CB 30F3";}]; + keys = [ { fingerprint = "58CE D4BE 6B10 149E DA80 A990 2F48 6356 A4CB 30F3"; } ]; }; genga898 = { email = "genga898@gmail.com"; @@ -9099,7 +9099,7 @@ List of NixOS maintainers. email = "geno+dev@fireorbit.de"; github = "genofire"; githubId = 6905586; - keys = [{fingerprint = "386E D1BF 848A BB4A 6B4A 3C45 FC83 907C 125B C2BC";}]; + keys = [ { fingerprint = "386E D1BF 848A BB4A 6B4A 3C45 FC83 907C 125B C2BC"; } ]; }; geoffreyfrogeye = { name = "Geoffrey Frogeye"; @@ -9107,14 +9107,14 @@ List of NixOS maintainers. matrix = "@geoffrey:frogeye.fr"; github = "GeoffreyFrogeye"; githubId = 1685403; - keys = [{fingerprint = "4FBA 930D 314A 0321 5E2C DB0A 8312 C8CA C1BA C289";}]; + keys = [ { fingerprint = "4FBA 930D 314A 0321 5E2C DB0A 8312 C8CA C1BA C289"; } ]; }; georgesalkhouri = { name = "Georges Alkhouri"; email = "incense.stitch_0w@icloud.com"; github = "GeorgesAlkhouri"; githubId = 6077574; - keys = [{fingerprint = "1608 9E8D 7C59 54F2 6A7A 7BD0 8BD2 09DC C54F D339";}]; + keys = [ { fingerprint = "1608 9E8D 7C59 54F2 6A7A 7BD0 8BD2 09DC C54F D339"; } ]; }; georgewhewell = { email = "georgerw@gmail.com"; @@ -9127,7 +9127,7 @@ List of NixOS maintainers. github = "georgyo"; githubId = 19374; name = "George Shammas"; - keys = [{fingerprint = "D0CF 440A A703 E0F9 73CB A078 82BB 70D5 41AE 2DB4";}]; + keys = [ { fingerprint = "D0CF 440A A703 E0F9 73CB A078 82BB 70D5 41AE 2DB4"; } ]; }; gepbird = { email = "gutyina.gergo.2@gmail.com"; @@ -9135,8 +9135,8 @@ List of NixOS maintainers. githubId = 29818440; name = "Gutyina Gergő"; keys = [ - {fingerprint = "RoAfvqa6w1l8Vdm3W60TDXurYwJ6h03VEGD+wDNGEwc";} - {fingerprint = "MP2UpIRtJpbFFqyucP431H/FPCfn58UhEUTro4lXtRs";} + { fingerprint = "RoAfvqa6w1l8Vdm3W60TDXurYwJ6h03VEGD+wDNGEwc"; } + { fingerprint = "MP2UpIRtJpbFFqyucP431H/FPCfn58UhEUTro4lXtRs"; } ]; }; geraldog = { @@ -9219,7 +9219,7 @@ List of NixOS maintainers. github = "ghthor"; githubId = 160298; name = "Will Owens"; - keys = [{fingerprint = "8E98 BB01 BFF8 AEA4 E303 FC4C 8074 09C9 2CE2 3033";}]; + keys = [ { fingerprint = "8E98 BB01 BFF8 AEA4 E303 FC4C 8074 09C9 2CE2 3033"; } ]; }; ghuntley = { email = "ghuntley@ghuntley.com"; @@ -9239,14 +9239,14 @@ List of NixOS maintainers. githubId = 334958; matrix = "@giggio:matrix.org"; name = "Giovanni Bassi"; - keys = [{fingerprint = "275F 6749 AFD2 379D 1033 548C 1237 AB12 2E6F 4761";}]; + keys = [ { fingerprint = "275F 6749 AFD2 379D 1033 548C 1237 AB12 2E6F 4761"; } ]; }; gigglesquid = { email = "jack.connors@protonmail.com"; github = "GiggleSquid"; githubId = 3685154; name = "Jack connors"; - keys = [{fingerprint = "21DF 8034 B212 EDFF 9F19 9C19 F65B 7583 7ABF D019";}]; + keys = [ { fingerprint = "21DF 8034 B212 EDFF 9F19 9C19 F65B 7583 7ABF D019"; } ]; }; gila = { email = "jeffry.molanus@gmail.com"; @@ -9347,7 +9347,7 @@ List of NixOS maintainers. email = "root@gws.fyi"; github = "glittershark"; githubId = 1481027; - keys = [{fingerprint = "0F11 A989 879E 8BBB FDC1 E236 44EF 5B5E 861C 09A7";}]; + keys = [ { fingerprint = "0F11 A989 879E 8BBB FDC1 E236 44EF 5B5E 861C 09A7"; } ]; }; gloaming = { email = "ch9871@gmail.com"; @@ -9394,7 +9394,7 @@ List of NixOS maintainers. github = "Gobidev"; githubId = 50576978; name = "Adrian Groh"; - keys = [{fingerprint = "62BD BF30 83E9 7076 9665 B60B 3AA3 153E 98B0 D771";}]; + keys = [ { fingerprint = "62BD BF30 83E9 7076 9665 B60B 3AA3 153E 98B0 D771"; } ]; }; goertzenator = { email = "daniel.goertzen@gmail.com"; @@ -9407,7 +9407,7 @@ List of NixOS maintainers. github = "GoldsteinE"; githubId = 12019211; name = "Maximilian Siling"; - keys = [{fingerprint = "0BAF 2D87 CB43 746F 6237 2D78 DE60 31AB A0BB 269A";}]; + keys = [ { fingerprint = "0BAF 2D87 CB43 746F 6237 2D78 DE60 31AB A0BB 269A"; } ]; }; Golo300 = { email = "lanzingertm@gmail.com"; @@ -9450,21 +9450,21 @@ List of NixOS maintainers. email = "gauvain@govanify.com"; github = "GovanifY"; githubId = 6375438; - keys = [{fingerprint = "5214 2D39 A7CE F8FA 872B CA7F DE62 E1E2 A614 5556";}]; + keys = [ { fingerprint = "5214 2D39 A7CE F8FA 872B CA7F DE62 E1E2 A614 5556"; } ]; }; gp2112 = { email = "me@guip.dev"; github = "gp2112"; githubId = 26512375; name = "Guilherme Paixão"; - keys = [{fingerprint = "4382 7E28 86E5 C34F 38D5 7753 8C81 4D62 5FBD 99D1";}]; + keys = [ { fingerprint = "4382 7E28 86E5 C34F 38D5 7753 8C81 4D62 5FBD 99D1"; } ]; }; gpanders = { name = "Gregory Anders"; email = "greg@gpanders.com"; github = "gpanders"; githubId = 8965202; - keys = [{fingerprint = "B9D5 0EDF E95E ECD0 C135 00A9 56E9 3C2F B6B0 8BDB";}]; + keys = [ { fingerprint = "B9D5 0EDF E95E ECD0 C135 00A9 56E9 3C2F B6B0 8BDB"; } ]; }; gpl = { email = "nixos-6c64ce18-bbbc-414f-8dcb-f9b6b47fe2bc@isopleth.org"; @@ -9526,14 +9526,14 @@ List of NixOS maintainers. github = "GRBurst"; githubId = 4647221; name = "GRBurst"; - keys = [{fingerprint = "7FC7 98AB 390E 1646 ED4D 8F1F 797F 6238 68CD 00C2";}]; + keys = [ { fingerprint = "7FC7 98AB 390E 1646 ED4D 8F1F 797F 6238 68CD 00C2"; } ]; }; greaka = { email = "git@greaka.de"; github = "greaka"; githubId = 2805834; name = "Greaka"; - keys = [{fingerprint = "6275 FB5C C9AC 9D85 FF9E 44C5 EE92 A5CD C367 118C";}]; + keys = [ { fingerprint = "6275 FB5C C9AC 9D85 FF9E 44C5 EE92 A5CD C367 118C"; } ]; }; greg = { email = "greg.hellings@gmail.com"; @@ -9559,7 +9559,7 @@ List of NixOS maintainers. matrix = "@gregor:giesen.net"; github = "grgi"; githubId = 6435815; - keys = [{fingerprint = "0F92 602B 1860 4476 77F4 8A67 C303 16AA C10F 3EA7";}]; + keys = [ { fingerprint = "0F92 602B 1860 4476 77F4 8A67 C303 16AA C10F 3EA7"; } ]; }; gridaphobe = { email = "eric@seidel.io"; @@ -9628,7 +9628,7 @@ List of NixOS maintainers. github = "Guanran928"; githubId = 68757440; name = "Guanran Wang"; - keys = [{fingerprint = "7835 BC13 4560 0660 0448 5A2C 91F9 7D9E D126 39CF";}]; + keys = [ { fingerprint = "7835 BC13 4560 0660 0448 5A2C 91F9 7D9E D126 39CF"; } ]; }; guekka = { github = "Guekka"; @@ -9736,7 +9736,7 @@ List of NixOS maintainers. matrix = "@h7x4:nani.wtf"; github = "h7x4"; githubId = 14929991; - keys = [{fingerprint = "F7D3 7890 228A 9074 40E1 FD48 46B9 228E 814A 2AAC";}]; + keys = [ { fingerprint = "F7D3 7890 228A 9074 40E1 FD48 46B9 228E 814A 2AAC"; } ]; }; hacker1024 = { name = "hacker1024"; @@ -9749,7 +9749,7 @@ List of NixOS maintainers. email = "hadilq.dev@gmail.com"; github = "hadilq"; githubId = 5190539; - keys = [{fingerprint = "AD3D 53CB A68A FEC0 8065 BCBB 416A D9E8 E372 C075";}]; + keys = [ { fingerprint = "AD3D 53CB A68A FEC0 8065 BCBB 416A D9E8 E372 C075"; } ]; }; hagl = { email = "harald@glie.be"; @@ -9822,7 +9822,7 @@ List of NixOS maintainers. github = "HaoZeke"; githubId = 4336207; name = "Rohit Goswami"; - keys = [{fingerprint = "74B1 F67D 8E43 A94A 7554 0768 9CCC E364 02CB 49A6";}]; + keys = [ { fingerprint = "74B1 F67D 8E43 A94A 7554 0768 9CCC E364 02CB 49A6"; } ]; }; happy-river = { email = "happyriver93@runbox.com"; @@ -9855,7 +9855,7 @@ List of NixOS maintainers. github = "hardselius"; githubId = 1422583; name = "Martin Hardselius"; - keys = [{fingerprint = "3F35 E4CA CBF4 2DE1 2E90 53E5 03A6 E6F7 8693 6619";}]; + keys = [ { fingerprint = "3F35 E4CA CBF4 2DE1 2E90 53E5 03A6 E6F7 8693 6619"; } ]; }; HarisDotParis = { name = "Haris"; @@ -9887,7 +9887,7 @@ List of NixOS maintainers. email = "haskellisierer@proton.me"; github = "HaskellHegemonie"; githubId = 73712423; - keys = [{fingerprint = "A559 0A2A 5B06 1923 3917 5F13 5622 C205 6513 577B";}]; + keys = [ { fingerprint = "A559 0A2A 5B06 1923 3917 5F13 5622 C205 6513 577B"; } ]; }; haslersn = { email = "haslersn@fius.informatik.uni-stuttgart.de"; @@ -9907,7 +9907,7 @@ List of NixOS maintainers. email = "hauskens-git@disp.lease>"; github = "hauskens"; githubId = 79340822; - keys = [{fingerprint = "3582 5B85 66C8 4F36 45C7 EC42 809F 7938 9CB1 8650";}]; + keys = [ { fingerprint = "3582 5B85 66C8 4F36 45C7 EC42 809F 7938 9CB1 8650"; } ]; }; havvy = { email = "ryan.havvy@gmail.com"; @@ -9957,7 +9957,7 @@ List of NixOS maintainers. email = "hdhog@hdhog.ru"; github = "hdhog"; githubId = 386666; - keys = [{fingerprint = "A25F 6321 AAB4 4151 4085 9924 952E ACB7 6703 BA63";}]; + keys = [ { fingerprint = "A25F 6321 AAB4 4151 4085 9924 952E ACB7 6703 BA63"; } ]; }; hectorj = { email = "hector.jusforgues+nixos@gmail.com"; @@ -10139,7 +10139,7 @@ List of NixOS maintainers. github = "heyimnova"; githubId = 115728866; name = "Nova Witterick"; - keys = [{fingerprint = "4304 6B43 8D83 078E 3DF7 10D6 DEB0 E15C 6D2A 5A7C";}]; + keys = [ { fingerprint = "4304 6B43 8D83 078E 3DF7 10D6 DEB0 E15C 6D2A 5A7C"; } ]; }; heywoodlh = { email = "nixpkgs@heywoodlh.io"; @@ -10193,7 +10193,7 @@ List of NixOS maintainers. github = "vale981"; githubId = 4025991; name = "Valentin Boettcher"; - keys = [{fingerprint = "45A9 9917 578C D629 9F5F B5B4 C22D 4DE4 D7B3 2D19";}]; + keys = [ { fingerprint = "45A9 9917 578C D629 9F5F B5B4 C22D 4DE4 D7B3 2D19"; } ]; }; hitsmaxft = { name = "Bhe Hongtyu"; @@ -10212,7 +10212,7 @@ List of NixOS maintainers. name = "Henrik Jonsson"; github = "hkjn"; githubId = 287215; - keys = [{fingerprint = "D618 7A03 A40A 3D56 62F5 4B46 03EF BF83 9A5F DC15";}]; + keys = [ { fingerprint = "D618 7A03 A40A 3D56 62F5 4B46 03EF BF83 9A5F DC15"; } ]; }; hlad = { email = "hlad+nix@hlad.org"; @@ -10244,7 +10244,7 @@ List of NixOS maintainers. email = "hello@haseebmajid.dev"; github = "hmajid2301"; githubId = 998807; - keys = [{fingerprint = "A236 785D 59F1 9076 1E9C E8EC 7828 3DB3 D233 E1F9";}]; + keys = [ { fingerprint = "A236 785D 59F1 9076 1E9C E8EC 7828 3DB3 D233 E1F9"; } ]; }; hmenke = { name = "Henri Menke"; @@ -10252,7 +10252,7 @@ List of NixOS maintainers. matrix = "@hmenke:matrix.org"; github = "hmenke"; githubId = 1903556; - keys = [{fingerprint = "F1C5 760E 45B9 9A44 72E9 6BFB D65C 9AFB 4C22 4DA3";}]; + keys = [ { fingerprint = "F1C5 760E 45B9 9A44 72E9 6BFB D65C 9AFB 4C22 4DA3"; } ]; }; hodapp = { email = "hodapp87@gmail.com"; @@ -10302,7 +10302,7 @@ List of NixOS maintainers. matrix = "@honnip:matrix.org"; github = "honnip"; githubId = 108175486; - keys = [{fingerprint = "E4DD 51F7 FA3F DCF1 BAF6 A72C 576E 43EF 8482 E415";}]; + keys = [ { fingerprint = "E4DD 51F7 FA3F DCF1 BAF6 A72C 576E 43EF 8482 E415"; } ]; }; hoppla20 = { email = "privat@vincentcui.de"; @@ -10322,7 +10322,7 @@ List of NixOS maintainers. matrix = "@hougo:liiib.re"; github = "hrenard"; githubId = 7594435; - keys = [{fingerprint = "3AE9 67F9 2C9F 55E9 03C8 283F 3A28 5FD4 7020 9C59";}]; + keys = [ { fingerprint = "3AE9 67F9 2C9F 55E9 03C8 283F 3A28 5FD4 7020 9C59"; } ]; }; hoverbear = { email = "operator+nix@hoverbear.org"; @@ -10391,7 +10391,7 @@ List of NixOS maintainers. matrix = "@huantian:huantian.dev"; github = "huantianad"; githubId = 20760920; - keys = [{fingerprint = "731A 7A05 AD8B 3AE5 956A C227 4A03 18E0 4E55 5DE5";}]; + keys = [ { fingerprint = "731A 7A05 AD8B 3AE5 956A C227 4A03 18E0 4E55 5DE5"; } ]; }; hubble = { name = "Hubble the Wolverine"; @@ -10441,7 +10441,7 @@ List of NixOS maintainers. github = "HugoReeves"; githubId = 20039091; name = "Hugo Reeves"; - keys = [{fingerprint = "78C2 E81C 828A 420B 269A EBC1 49FA 39F8 A7F7 35F9";}]; + keys = [ { fingerprint = "78C2 E81C 828A 420B 269A EBC1 49FA 39F8 A7F7 35F9"; } ]; }; hulr = { github = "hulr"; @@ -10471,7 +10471,7 @@ List of NixOS maintainers. github = "huskyistaken"; githubId = 20684258; name = "Luna Perego"; - keys = [{fingerprint = "09E4 B981 9B93 5B0C 0B91 1274 0578 7332 9217 08FF";}]; + keys = [ { fingerprint = "09E4 B981 9B93 5B0C 0B91 1274 0578 7332 9217 08FF"; } ]; }; hustlerone = { email = "nine-ball@tutanota.com"; @@ -10485,7 +10485,7 @@ List of NixOS maintainers. github = "Huy-Ngo"; name = "Ngô Ngọc Đức Huy"; githubId = 19296926; - keys = [{fingerprint = "DF12 23B1 A9FD C5BE 3DA5 B6F7 904A F1C7 CDF6 95C3";}]; + keys = [ { fingerprint = "DF12 23B1 A9FD C5BE 3DA5 B6F7 904A F1C7 CDF6 95C3"; } ]; }; hxtmdev = { email = "daniel@hxtm.dev"; @@ -10510,7 +10510,7 @@ List of NixOS maintainers. email = "bryan@hyshka.com"; github = "hyshka"; githubId = 2090758; - keys = [{fingerprint = "24F4 1925 28C4 8797 E539 F247 DB2D 93D1 BFAA A6EA";}]; + keys = [ { fingerprint = "24F4 1925 28C4 8797 E539 F247 DB2D 93D1 BFAA A6EA"; } ]; }; hyzual = { email = "hyzual@gmail.com"; @@ -10545,7 +10545,7 @@ List of NixOS maintainers. github = "iagocq"; githubId = 18238046; name = "Iago Manoel Brito"; - keys = [{fingerprint = "DF90 9D58 BEE4 E73A 1B8C 5AF3 35D3 9F9A 9A1B C8DA";}]; + keys = [ { fingerprint = "DF90 9D58 BEE4 E73A 1B8C 5AF3 35D3 9F9A 9A1B C8DA"; } ]; }; iamanaws = { email = "nixpkgs.yjzaw@slmail.me"; @@ -10583,7 +10583,7 @@ List of NixOS maintainers. github = "ibizaman"; githubId = 1044950; name = "Pierre Penninckx"; - keys = [{fingerprint = "A01F 10C6 7176 B2AE 2A34 1A56 D4C5 C37E 6031 A3FE";}]; + keys = [ { fingerprint = "A01F 10C6 7176 B2AE 2A34 1A56 D4C5 C37E 6031 A3FE"; } ]; }; iblech = { email = "iblech@speicherleck.de"; @@ -10827,7 +10827,7 @@ List of NixOS maintainers. github = "impl"; githubId = 41129; name = "Noah Fontes"; - keys = [{fingerprint = "F5B2 BE1B 9AAD 98FE 2916 5597 3665 FFF7 9D38 7BAA";}]; + keys = [ { fingerprint = "F5B2 BE1B 9AAD 98FE 2916 5597 3665 FFF7 9D38 7BAA"; } ]; }; imrying = { email = "philiprying@gmail.com"; @@ -10840,7 +10840,7 @@ List of NixOS maintainers. github = "ImSapphire"; githubId = 48931512; name = "Sapphire"; - keys = [{fingerprint = "D303 4473 1843 D27B 5D4E 2273 6429 11AA 4025 C8CC";}]; + keys = [ { fingerprint = "D303 4473 1843 D27B 5D4E 2273 6429 11AA 4025 C8CC"; } ]; }; imsick = { email = "lent-lather-excuse@duck.com"; @@ -10909,7 +10909,7 @@ List of NixOS maintainers. github = "infinisil"; githubId = 20525370; name = "Silvan Mosberger"; - keys = [{fingerprint = "6C2B 55D4 4E04 8266 6B7D DA1A 422E 9EDA E015 7170";}]; + keys = [ { fingerprint = "6C2B 55D4 4E04 8266 6B7D DA1A 422E 9EDA E015 7170"; } ]; }; ingenieroariel = { email = "ariel@nunez.co"; @@ -10922,7 +10922,7 @@ List of NixOS maintainers. github = "Intuinewin"; githubId = 13691729; name = "Antoine Labarussias"; - keys = [{fingerprint = "5CB5 9AA0 D180 1997 2FB3 E0EC 943A 1DE9 372E BE4E";}]; + keys = [ { fingerprint = "5CB5 9AA0 D180 1997 2FB3 E0EC 943A 1DE9 372E BE4E"; } ]; }; invokes-su = { email = "nixpkgs-commits@deshaw.com"; @@ -10976,7 +10976,7 @@ List of NixOS maintainers. matrix = "@irenes:matrix.org"; github = "IreneKnapp"; githubId = 157678; - keys = [{fingerprint = "E864 BDFA AB55 36FD C905 5195 DBF2 52AF FB26 19FD";}]; + keys = [ { fingerprint = "E864 BDFA AB55 36FD C905 5195 DBF2 52AF FB26 19FD"; } ]; }; ironicbadger = { email = "alexktz@gmail.com"; @@ -11008,7 +11008,7 @@ List of NixOS maintainers. email = "isgy@teiyg.com"; github = "tgys"; githubId = 13622947; - keys = [{fingerprint = "1412 816B A9FA F62F D051 1975 D3E1 B013 B463 1293";}]; + keys = [ { fingerprint = "1412 816B A9FA F62F D051 1975 D3E1 B013 B463 1293"; } ]; }; isotoxal = { name = "Abhinav Kuruvila Joseph"; @@ -11032,14 +11032,14 @@ List of NixOS maintainers. github = "itepastra"; githubId = 27058689; email = "itepastra@gmail.com"; - keys = [{fingerprint = "E681 4CAF 06AE B076 D55D 3E32 A16C DCBF 1472 541F";}]; + keys = [ { fingerprint = "E681 4CAF 06AE B076 D55D 3E32 A16C DCBF 1472 541F"; } ]; }; itsvic-dev = { email = "contact@itsvic.dev"; name = "Victor B."; github = "itsvic-dev"; githubId = 17727163; - keys = [{fingerprint = "FBAA B86A 101B 4C5F D4F1 25D2 E93D DAC1 7E5D 6CA1";}]; + keys = [ { fingerprint = "FBAA B86A 101B 4C5F D4F1 25D2 E93D DAC1 7E5D 6CA1"; } ]; }; ius = { email = "j.de.gram@gmail.com"; @@ -11052,7 +11052,7 @@ List of NixOS maintainers. name = "iv-nn"; github = "iv-nn"; githubId = 49885246; - keys = [{fingerprint = "6358 EF87 86E0 EF2F 1628 103F BAB5 F165 1C71 C9C3";}]; + keys = [ { fingerprint = "6358 EF87 86E0 EF2F 1628 103F BAB5 F165 1C71 C9C3"; } ]; }; ivalery111 = { name = "Valery"; @@ -11095,13 +11095,13 @@ List of NixOS maintainers. github = "ivanbrennan"; githubId = 1672874; name = "Ivan Brennan"; - keys = [{fingerprint = "7311 2700 AB4F 4CDF C68C F6A5 79C3 C47D C652 EA54";}]; + keys = [ { fingerprint = "7311 2700 AB4F 4CDF C68C F6A5 79C3 C47D C652 EA54"; } ]; }; ivankovnatsky = { github = "ivankovnatsky"; githubId = 75213; name = "Ivan Kovnatsky"; - keys = [{fingerprint = "6BD3 7248 30BD 941E 9180 C1A3 3A33 FA4C 82ED 674F";}]; + keys = [ { fingerprint = "6BD3 7248 30BD 941E 9180 C1A3 3A33 FA4C 82ED 674F"; } ]; }; ivanmoreau = { email = "Iván Molina Rebolledo"; @@ -11132,7 +11132,7 @@ List of NixOS maintainers. github = "ixhbinphoenix"; githubId = 47122082; name = "Emilia Nyx"; - keys = [{fingerprint = "91DB 328E 3FAB 8A08 9AF6 5276 3E62 370C 1D77 3013";}]; + keys = [ { fingerprint = "91DB 328E 3FAB 8A08 9AF6 5276 3E62 370C 1D77 3013"; } ]; }; ixmatus = { email = "parnell@digitalmentat.com"; @@ -11229,7 +11229,7 @@ List of NixOS maintainers. email = "contact@ja1den.me"; github = "ja1den"; githubId = 49811314; - keys = [{fingerprint = "CC36 4CF4 32DD 443F 27FC 033C 3475 AA20 D72F 6A93";}]; + keys = [ { fingerprint = "CC36 4CF4 32DD 443F 27FC 033C 3475 AA20 D72F 6A93"; } ]; }; jab = { name = "Joshua Bronson"; @@ -11284,14 +11284,14 @@ List of NixOS maintainers. email = "jacobkoziej@gmail.com"; github = "jacobkoziej"; githubId = 45084216; - keys = [{fingerprint = "1BF9 8D10 E0D0 0B41 5723 5836 4C13 3A84 E646 9228";}]; + keys = [ { fingerprint = "1BF9 8D10 E0D0 0B41 5723 5836 4C13 3A84 E646 9228"; } ]; }; JacoMalan1 = { name = "Jaco Malan"; email = "jacom@codelog.co.za"; github = "JacoMalan1"; githubId = 10290409; - keys = [{fingerprint = "339C 9213 7F2D 5D6E 2B6A 6E98 240B B4C4 27BC 327A";}]; + keys = [ { fingerprint = "339C 9213 7F2D 5D6E 2B6A 6E98 240B B4C4 27BC 327A"; } ]; }; jaculabilis = { name = "Tim Van Baak"; @@ -11316,7 +11316,7 @@ List of NixOS maintainers. github = "jakecleary"; githubId = 4572429; name = "Jake Cleary"; - keys = [{fingerprint = "6192 E5CC 28B8 FA7E F5F3 775F 3726 5B1E 496C 92A2";}]; + keys = [ { fingerprint = "6192 E5CC 28B8 FA7E F5F3 775F 3726 5B1E 496C 92A2"; } ]; }; jakedevs = { email = "work@jakedevs.net"; @@ -11330,7 +11330,7 @@ List of NixOS maintainers. matrix = "@jakehamilton:matrix.org"; github = "jakehamilton"; githubId = 7005773; - keys = [{fingerprint = "B982 0250 1720 D540 6A18 2DA8 188E 4945 E85B 2D21";}]; + keys = [ { fingerprint = "B982 0250 1720 D540 6A18 2DA8 188E 4945 E85B 2D21"; } ]; }; jakeisnt = { name = "Jacob Chvatal"; @@ -11379,7 +11379,7 @@ List of NixOS maintainers. name = "jamalam"; github = "Jamalam360"; githubId = 56727311; - keys = [{fingerprint = "B1B2 2BA0 FC39 D4B4 2240 5F55 D86C D68E 8DB2 E368";}]; + keys = [ { fingerprint = "B1B2 2BA0 FC39 D4B4 2240 5F55 D86C D68E 8DB2 E368"; } ]; }; james-atkins = { name = "James Atkins"; @@ -11391,7 +11391,7 @@ List of NixOS maintainers. name = "James Ward"; github = "jamesward"; githubId = 65043; - keys = [{fingerprint = "82F9 4BBD F95C 247B BD21 396B 9A0B 94DE C0FF A7EE";}]; + keys = [ { fingerprint = "82F9 4BBD F95C 247B BD21 396B 9A0B 94DE C0FF A7EE"; } ]; }; jamiemagee = { email = "jamie.magee@gmail.com"; @@ -11575,14 +11575,14 @@ List of NixOS maintainers. githubId = 740022; matrix = "@jeff:ocjtech.us"; name = "Jeffrey C. Ollie"; - keys = [{fingerprint = "A8CF 5B72 ABC3 9A17 3FEA 620E 6F86 035A 6D97 044E";}]; + keys = [ { fingerprint = "A8CF 5B72 ABC3 9A17 3FEA 620E 6F86 035A 6D97 044E"; } ]; }; jcouyang = { email = "oyanglulu@gmail.com"; github = "jcouyang"; githubId = 1235045; name = "Jichao Ouyang"; - keys = [{fingerprint = "A506 C38D 5CC8 47D0 DF01 134A DA8B 833B 5260 4E63";}]; + keys = [ { fingerprint = "A506 C38D 5CC8 47D0 DF01 134A DA8B 833B 5260 4E63"; } ]; }; jcs090218 = { email = "jcs090218@gmail.com"; @@ -11618,7 +11618,7 @@ List of NixOS maintainers. email = "jdanek@redhat.com"; github = "jirkadanek"; githubId = 17877663; - keys = [{fingerprint = "D4A6 F051 AD58 2E7C BCED 5439 6927 5CAD F15D 872E";}]; + keys = [ { fingerprint = "D4A6 F051 AD58 2E7C BCED 5439 6927 5CAD F15D 872E"; } ]; name = "Jiri Daněk"; }; jdbaldry = { @@ -11747,7 +11747,7 @@ List of NixOS maintainers. github = "jervw"; githubId = 53620688; name = "Jere Vuola"; - keys = [{fingerprint = "56C2 5B5B 2075 6352 B4B0 E17E F188 3717 47DA 5895";}]; + keys = [ { fingerprint = "56C2 5B5B 2075 6352 B4B0 E17E F188 3717 47DA 5895"; } ]; }; jeschli = { email = "jeschli@gmail.com"; @@ -11801,14 +11801,14 @@ List of NixOS maintainers. github = "jezcope"; githubId = 457628; name = "Jez Cope"; - keys = [{fingerprint = "D9DA 3E47 E8BD 377D A317 B3D0 9E42 CE07 1C45 59D1";}]; + keys = [ { fingerprint = "D9DA 3E47 E8BD 377D A317 B3D0 9E42 CE07 1C45 59D1"; } ]; }; jfchevrette = { email = "jfchevrette@gmail.com"; github = "jfchevrette"; githubId = 3001; name = "Jean-Francois Chevrette"; - keys = [{fingerprint = "B612 96A9 498E EECD D5E9 C0F0 67A0 5858 0129 0DC6";}]; + keys = [ { fingerprint = "B612 96A9 498E EECD D5E9 C0F0 67A0 5858 0129 0DC6"; } ]; }; jflanglois = { email = "yourstruly@julienlanglois.me"; @@ -11821,7 +11821,7 @@ List of NixOS maintainers. email = "jeremyfleischman@gmail.com"; github = "jfly"; githubId = 277474; - keys = [{fingerprint = "F1F1 3395 8E8E 9CC4 D9FC 9647 1931 9CD8 416A 642B";}]; + keys = [ { fingerprint = "F1F1 3395 8E8E 9CC4 D9FC 9647 1931 9CD8 416A 642B"; } ]; }; jfroche = { name = "Jean-François Roche"; @@ -11829,7 +11829,7 @@ List of NixOS maintainers. matrix = "@jfroche:matrix.pyxel.cloud"; github = "jfroche"; githubId = 207369; - keys = [{fingerprint = "7EB1 C02A B62B B464 6D7C E4AE D1D0 9DE1 69EA 19A0";}]; + keys = [ { fingerprint = "7EB1 C02A B62B B464 6D7C E4AE D1D0 9DE1 69EA 19A0"; } ]; }; jfvillablanca = { email = "jmfv.dev@gmail.com"; @@ -11903,7 +11903,7 @@ List of NixOS maintainers. email = "joel@airwebreathe.org.uk"; github = "jhol"; githubId = 1449493; - keys = [{fingerprint = "08F7 2546 95DE EAEF 03DE B0E4 D874 562D DC99 D889";}]; + keys = [ { fingerprint = "08F7 2546 95DE EAEF 03DE B0E4 D874 562D DC99 D889"; } ]; }; jhollowe = { email = "jhollowe@johnhollowell.com"; @@ -11999,7 +11999,7 @@ List of NixOS maintainers. github = "jlamur"; githubId = 7054317; name = "Jules Lamur"; - keys = [{fingerprint = "B768 6CD7 451A 650D 9C54 4204 6710 CF0C 1CBD 7762";}]; + keys = [ { fingerprint = "B768 6CD7 451A 650D 9C54 4204 6710 CF0C 1CBD 7762"; } ]; }; jlbribeiro = { email = "nix@jlbribeiro.com"; @@ -12074,9 +12074,9 @@ List of NixOS maintainers. name = "João Figueira"; keys = [ # GitHub signing key - {fingerprint = "EC08 7AA3 DEAD A972 F015 6371 DC7A E56A E98E 02D7";} + { fingerprint = "EC08 7AA3 DEAD A972 F015 6371 DC7A E56A E98E 02D7"; } # Email encryption - {fingerprint = "816D 23F5 E672 EC58 7674 4A73 197F 9A63 2D13 9E30";} + { fingerprint = "816D 23F5 E672 EC58 7674 4A73 197F 9A63 2D13 9E30"; } ]; }; jmendyk = { @@ -12155,14 +12155,14 @@ List of NixOS maintainers. github = "joaoymoreira"; githubId = 151087767; name = "João Moreira"; - keys = [{fingerprint = "F457 0A3A 5F89 22F8 F572 E075 EF8B F2C8 C5F4 097D";}]; + keys = [ { fingerprint = "F457 0A3A 5F89 22F8 F572 E075 EF8B F2C8 C5F4 097D"; } ]; }; joaquintrinanes = { email = "hi@joaquint.io"; github = "JoaquinTrinanes"; name = "Joaquín Triñanes"; githubId = 1385934; - keys = [{fingerprint = "3A13 5C15 E1D5 850D 2F90 AB25 6E14 46DD 451C 6BAF";}]; + keys = [ { fingerprint = "3A13 5C15 E1D5 850D 2F90 AB25 6E14 46DD 451C 6BAF"; } ]; }; joblade = { email = "bladeur13@free.fr"; @@ -12313,7 +12313,7 @@ List of NixOS maintainers. github = "joinemm"; githubId = 26210439; name = "Joonas Rautiola"; - keys = [{fingerprint = "87EC DD30 6614 E510 5299 F0D4 090E B48A 4669 AA54";}]; + keys = [ { fingerprint = "87EC DD30 6614 E510 5299 F0D4 090E B48A 4669 AA54"; } ]; }; Jojo4GH = { name = "Jonas Broeckmann"; @@ -12326,7 +12326,7 @@ List of NixOS maintainers. matrix = "@jojosch:jswc.de"; github = "jojosch"; githubId = 327488; - keys = [{fingerprint = "7249 70E6 A661 D84E 8B47 678A 0590 93B1 A278 BCD0";}]; + keys = [ { fingerprint = "7249 70E6 A661 D84E 8B47 678A 0590 93B1 A278 BCD0"; } ]; }; jokatzke = { email = "jokatzke@fastmail.com"; @@ -12352,7 +12352,7 @@ List of NixOS maintainers. github = "jolars"; githubId = 13087841; name = "Johan Larsson"; - keys = [{fingerprint = "F0D6 BDE7 C7D1 6B3F 7883 73E7 2A41 C0FE DD6F F540";}]; + keys = [ { fingerprint = "F0D6 BDE7 C7D1 6B3F 7883 73E7 2A41 C0FE DD6F F540"; } ]; }; jolheiser = { email = "nixpkgs@jolheiser.com"; @@ -12366,7 +12366,7 @@ List of NixOS maintainers. matrix = "@jona:matrix.jonaenz.de"; github = "JonaEnz"; githubId = 57130301; - keys = [{fingerprint = "1CC5 B67C EB9A 13A5 EDF6 F10E 0B4A 3662 FC58 9202";}]; + keys = [ { fingerprint = "1CC5 B67C EB9A 13A5 EDF6 F10E 0B4A 3662 FC58 9202"; } ]; }; jonas-w = { email = "nixpkgs@03j.de"; @@ -12430,7 +12430,7 @@ List of NixOS maintainers. email = "jordan@bravo.cc"; github = "jordan-bravo"; githubId = 62706808; - keys = [{fingerprint = "9C7B 45CD CF53 B483 9BB8 000E C6E3 AECE B5E1 0B1E";}]; + keys = [ { fingerprint = "9C7B 45CD CF53 B483 9BB8 000E C6E3 AECE B5E1 0B1E"; } ]; }; jordanisaacs = { name = "Jordan Isaacs"; @@ -12609,7 +12609,7 @@ List of NixOS maintainers. matrix = "@6pak:matrix.org"; github = "js6pak"; githubId = 35262707; - keys = [{fingerprint = "66D1 1EA6 571D E4F9 16B3 B8EB 3E3C D91E B1AA FB06";}]; + keys = [ { fingerprint = "66D1 1EA6 571D E4F9 16B3 B8EB 3E3C D91E B1AA FB06"; } ]; }; jshcmpbll = { email = "me@joshuadcampbell.com"; @@ -12665,7 +12665,7 @@ List of NixOS maintainers. name = "Julien Coolen"; github = "jtcoolen"; githubId = 54635632; - keys = [{fingerprint = "4C68 56EE DFDA 20FB 77E8 9169 1964 2151 C218 F6F5";}]; + keys = [ { fingerprint = "4C68 56EE DFDA 20FB 77E8 9169 1964 2151 C218 F6F5"; } ]; }; jthulhu = { name = "Adrien Mathieu"; @@ -12704,7 +12704,7 @@ List of NixOS maintainers. github = "jcmuller"; matrix = "@jcmuller@beeper.com"; name = "Juan C. Müller"; - keys = [{fingerprint = "D78D 25D8 A1B8 2596 267F 35B8 F44E A51A 28F9 B4A7";}]; + keys = [ { fingerprint = "D78D 25D8 A1B8 2596 267F 35B8 F44E A51A 28F9 B4A7"; } ]; }; juaningan = { email = "juaningan@gmail.com"; @@ -12743,7 +12743,7 @@ List of NixOS maintainers. matrix = "@julian:matrix.epiccraft-mc.de"; github = "juli0604"; githubId = 62934740; - keys = [{fingerprint = "E9C6 44C7 F6AA A865 4CB9 2723 22C8 B0CE B9AC 4AFF";}]; + keys = [ { fingerprint = "E9C6 44C7 F6AA A865 4CB9 2723 22C8 B0CE B9AC 4AFF"; } ]; }; juliabru = { name = "Julia Brunenberg"; @@ -12761,7 +12761,7 @@ List of NixOS maintainers. name = "Julian Partanen"; github = "JulianFP"; githubId = 70963316; - keys = [{fingerprint = "C61D 7747 43DE EF05 4E4A 3AC1 6FE2 79EB 5C9F 3466";}]; + keys = [ { fingerprint = "C61D 7747 43DE EF05 4E4A 3AC1 6FE2 79EB 5C9F 3466"; } ]; }; juliendehos = { email = "dehos@lisic.univ-littoral.fr"; @@ -12810,7 +12810,7 @@ List of NixOS maintainers. github = "junestepp"; githubId = 26205306; name = "June Stepp"; - keys = [{fingerprint = "2561 0243 2233 CFE6 E13E 3C33 348C 6EB3 39AE C582";}]; + keys = [ { fingerprint = "2561 0243 2233 CFE6 E13E 3C33 348C 6EB3 39AE C582"; } ]; }; junjihashimoto = { email = "junji.hashimoto@gmail.com"; @@ -12870,7 +12870,7 @@ List of NixOS maintainers. github = "jvanbruegge"; githubId = 1529052; name = "Jan van Brügge"; - keys = [{fingerprint = "3513 5CE5 77AD 711F 3825 9A99 3665 72BE 7D6C 78A2";}]; + keys = [ { fingerprint = "3513 5CE5 77AD 711F 3825 9A99 3665 72BE 7D6C 78A2"; } ]; }; jwatt = { email = "jwatt@broken.watch"; @@ -12883,7 +12883,7 @@ List of NixOS maintainers. github = "jwiegley"; githubId = 8460; name = "John Wiegley"; - keys = [{fingerprint = "4710 CF98 AF9B 327B B80F 60E1 46C4 BD1A 7AC1 4BA2";}]; + keys = [ { fingerprint = "4710 CF98 AF9B 327B B80F 60E1 46C4 BD1A 7AC1 4BA2"; } ]; }; jwijenbergh = { email = "jeroenwijenbergh@protonmail.com"; @@ -12896,7 +12896,7 @@ List of NixOS maintainers. github = "jwillikers"; githubId = 19399197; name = "Jordan Williams"; - keys = [{fingerprint = "A6AB 406A F5F1 DE02 CEA3 B6F0 9FB4 2B0E 7F65 7D8C";}]; + keys = [ { fingerprint = "A6AB 406A F5F1 DE02 CEA3 B6F0 9FB4 2B0E 7F65 7D8C"; } ]; }; jwygoda = { email = "jaroslaw@wygoda.me"; @@ -12940,14 +12940,14 @@ List of NixOS maintainers. github = "kachick"; githubId = 1180335; name = "Kenichi Kamiya"; - keys = [{fingerprint = "9121 5D87 20CA B405 C63F 24D2 EF6E 574D 040A E2A5";}]; + keys = [ { fingerprint = "9121 5D87 20CA B405 C63F 24D2 EF6E 574D 040A E2A5"; } ]; }; kaction = { name = "Dmitry Bogatov"; email = "KAction@disroot.org"; github = "KAction"; githubId = 44864956; - keys = [{fingerprint = "3F87 0A7C A7B4 3731 2F13 6083 749F D4DF A2E9 4236";}]; + keys = [ { fingerprint = "3F87 0A7C A7B4 3731 2F13 6083 749F D4DF A2E9 4236"; } ]; }; kaeeraa = { name = "kaeeraa"; @@ -12997,7 +12997,7 @@ List of NixOS maintainers. email = "kamadorueda@gmail.com"; github = "kamadorueda"; githubId = 47480384; - keys = [{fingerprint = "2BE3 BAFD 793E A349 ED1F F00F 04D0 CEAF 916A 9A40";}]; + keys = [ { fingerprint = "2BE3 BAFD 793E A349 ED1F F00F 04D0 CEAF 916A 9A40"; } ]; }; kamilchm = { email = "kamil.chm@gmail.com"; @@ -13010,7 +13010,7 @@ List of NixOS maintainers. email = "me@kamillaova.dev"; github = "Kamillaova"; githubId = 54859825; - keys = [{fingerprint = "B2D0 AA53 8DBE 60B0 0811 3FC0 2D52 5F67 791E 5834";}]; + keys = [ { fingerprint = "B2D0 AA53 8DBE 60B0 0811 3FC0 2D52 5F67 791E 5834"; } ]; }; kampfschlaefer = { email = "arnold@arnoldarts.de"; @@ -13119,7 +13119,7 @@ List of NixOS maintainers. email = "git@keksgesicht.de"; github = "Keksgesicht"; githubId = 32649612; - keys = [{fingerprint = "65DF D21C 22A9 E4CD FD1A 0804 C3D7 16E7 29B3 C86A";}]; + keys = [ { fingerprint = "65DF D21C 22A9 E4CD FD1A 0804 C3D7 16E7 29B3 C86A"; } ]; }; keldu = { email = "mail@keldu.de"; @@ -13138,7 +13138,7 @@ List of NixOS maintainers. github = "kennyballou"; githubId = 2186188; name = "Kenny Ballou"; - keys = [{fingerprint = "932F 3E8E 1C0F 4A98 95D7 B8B8 B0CA A28A 0295 8308";}]; + keys = [ { fingerprint = "932F 3E8E 1C0F 4A98 95D7 B8B8 B0CA A28A 0295 8308"; } ]; }; kenran = { email = "johannes.maier@mailbox.org"; @@ -13176,7 +13176,7 @@ List of NixOS maintainers. github = "kevincox"; githubId = 494012; name = "Kevin Cox"; - keys = [{fingerprint = "B66B 891D D83B 0E67 7D84 FC30 9BB9 2CC1 552E 99AA";}]; + keys = [ { fingerprint = "B66B 891D D83B 0E67 7D84 FC30 9BB9 2CC1 552E 99AA"; } ]; }; kevingriffin = { email = "me@kevin.jp"; @@ -13214,7 +13214,7 @@ List of NixOS maintainers. github = "kgtkr"; githubId = 17868838; name = "kgtkr"; - keys = [{fingerprint = "B30D BE93 81E0 3D5D F301 88C8 1F6E B951 9F57 3241";}]; + keys = [ { fingerprint = "B30D BE93 81E0 3D5D F301 88C8 1F6E B951 9F57 3241"; } ]; }; khaneliman = { email = "khaneliman12@gmail.com"; @@ -13239,7 +13239,7 @@ List of NixOS maintainers. github = "khrj"; githubId = 44947946; name = "Khushraj Rathod"; - keys = [{fingerprint = "1988 3FD8 EA2E B4EC 0A93 1E22 B77B 2A40 E770 2F19";}]; + keys = [ { fingerprint = "1988 3FD8 EA2E B4EC 0A93 1E22 B77B 2A40 E770 2F19"; } ]; }; kiara = { name = "kiara"; @@ -13403,7 +13403,7 @@ List of NixOS maintainers. github = "kittywitch"; githubId = 67870215; name = "Kat Inskip"; - keys = [{fingerprint = "9CC6 44B5 69CD A59B C874 C4C9 E8DD E3ED 1C90 F3A0";}]; + keys = [ { fingerprint = "9CC6 44B5 69CD A59B C874 C4C9 E8DD E3ED 1C90 F3A0"; } ]; }; kivikakk = { email = "ashe@kivikakk.ee"; @@ -13458,7 +13458,7 @@ List of NixOS maintainers. name = "Fiona Behrens"; github = "kloenk"; githubId = 12898828; - keys = [{fingerprint = "B44A DFDF F869 A66A 3FDF DD8B 8609 A7B5 19E5 E342";}]; + keys = [ { fingerprint = "B44A DFDF F869 A66A 3FDF DD8B 8609 A7B5 19E5 E342"; } ]; }; kmatasfp = { email = "el-development@protonmail.com"; @@ -13801,14 +13801,14 @@ List of NixOS maintainers. github = "kugland"; githubId = 1173932; name = "André Kugland"; - keys = [{fingerprint = "6A62 5E60 E3FF FCAE B3AA 50DC 1DA9 3817 80CD D833";}]; + keys = [ { fingerprint = "6A62 5E60 E3FF FCAE B3AA 50DC 1DA9 3817 80CD D833"; } ]; }; kuglimon = { name = "Tatu Argillander"; email = "tatu.argillander@kouralabs.com"; github = "kuglimon"; githubId = 629430; - keys = [{fingerprint = "2843 750C B1AB E256 94BE 40E2 D843 D30B 42CA 0E2D";}]; + keys = [ { fingerprint = "2843 750C B1AB E256 94BE 40E2 D843 D30B 42CA 0E2D"; } ]; }; kupac = { github = "Kupac"; @@ -13863,7 +13863,7 @@ List of NixOS maintainers. matrix = "@kwaa:matrix.org"; github = "kwaa"; githubId = 50108258; - keys = [{fingerprint = "ABCB A12F 1A8E 3CCC F10B 5109 4444 7777 3333 4444";}]; + keys = [ { fingerprint = "ABCB A12F 1A8E 3CCC F10B 5109 4444 7777 3333 4444"; } ]; }; kwohlfahrt = { email = "kai.wohlfahrt@gmail.com"; @@ -13894,7 +13894,7 @@ List of NixOS maintainers. github = "KyleOndy"; githubId = 1640900; name = "Kyle Ondy"; - keys = [{fingerprint = "3C79 9D26 057B 64E6 D907 B0AC DB0E 3C33 491F 91C9";}]; + keys = [ { fingerprint = "3C79 9D26 057B 64E6 D907 B0AC DB0E 3C33 491F 91C9"; } ]; }; kylerisse = { name = "Kyle Risse"; @@ -13909,14 +13909,14 @@ List of NixOS maintainers. github = "kylesferrazza"; githubId = 6677292; - keys = [{fingerprint = "5A9A 1C9B 2369 8049 3B48 CF5B 81A1 5409 4816 2372";}]; + keys = [ { fingerprint = "5A9A 1C9B 2369 8049 3B48 CF5B 81A1 5409 4816 2372"; } ]; }; l-as = { email = "las@protonmail.ch"; matrix = "@Las:matrix.org"; github = "L-as"; githubId = 22075344; - keys = [{fingerprint = "A093 EA17 F450 D4D1 60A0 1194 AC45 8A7D 1087 D025";}]; + keys = [ { fingerprint = "A093 EA17 F450 D4D1 60A0 1194 AC45 8A7D 1087 D025"; } ]; name = "Las Safin"; }; l0b0 = { @@ -13967,7 +13967,7 @@ List of NixOS maintainers. email = "iam@lach.pw"; github = "CertainLach"; githubId = 6235312; - keys = [{fingerprint = "323C 95B5 DBF7 2D74 8570 C0B7 40B5 D694 8143 175F";}]; + keys = [ { fingerprint = "323C 95B5 DBF7 2D74 8570 C0B7 40B5 D694 8143 175F"; } ]; name = "Yaroslav Bolyukin"; }; lachrymal = { @@ -13986,7 +13986,7 @@ List of NixOS maintainers. email = "joseph@lafreniere.xyz"; github = "lafrenierejm"; githubId = 11155300; - keys = [{fingerprint = "0375 DD9A EDD1 68A3 ADA3 9EBA EE23 6AA0 141E FCA3";}]; + keys = [ { fingerprint = "0375 DD9A EDD1 68A3 ADA3 9EBA EE23 6AA0 141E FCA3"; } ]; name = "Joseph LaFreniere"; }; lagoja = { @@ -14128,7 +14128,7 @@ List of NixOS maintainers. email = "leana.jiang+git@icloud.com"; github = "leana8959"; githubId = 87855546; - keys = [{fingerprint = "3659 D5C8 7A4B C5D7 699B 37D8 4E88 7A4C A971 4ADA";}]; + keys = [ { fingerprint = "3659 D5C8 7A4B C5D7 699B 37D8 4E88 7A4C A971 4ADA"; } ]; }; lebastr = { email = "lebastr@gmail.com"; @@ -14140,14 +14140,14 @@ List of NixOS maintainers. name = "Lucius Hu"; github = "lebensterben"; githubId = 1222865; - keys = [{fingerprint = "80C6 77F2 ED0B E732 3835 A8D3 7E47 4E82 E29B 5A7A";}]; + keys = [ { fingerprint = "80C6 77F2 ED0B E732 3835 A8D3 7E47 4E82 E29B 5A7A"; } ]; }; lecoqjacob = { name = "Jacob LeCoq"; email = "lecoqjacob@gmail.com"; githubId = 9278174; github = "bayou-brogrammer"; - keys = [{fingerprint = "C505 1E8B 06AC 1776 6875 1B60 93AF DAD0 10B3 CB8D";}]; + keys = [ { fingerprint = "C505 1E8B 06AC 1776 6875 1B60 93AF DAD0 10B3 CB8D"; } ]; }; ledif = { email = "refuse@gmail.com"; @@ -14177,7 +14177,7 @@ List of NixOS maintainers. github = "leifhelm"; githubId = 31693262; name = "Jakob Leifhelm"; - keys = [{fingerprint = "4A82 F68D AC07 9FFD 8BF0 89C4 6817 AA02 3810 0822";}]; + keys = [ { fingerprint = "4A82 F68D AC07 9FFD 8BF0 89C4 6817 AA02 3810 0822"; } ]; }; leiserfg = { email = "leiserfg@gmail.com"; @@ -14191,7 +14191,7 @@ List of NixOS maintainers. github = "Leixb"; githubId = 17183803; name = "Aleix Boné"; - keys = [{fingerprint = "63D3 F436 EDE8 7E1F 1292 24AF FC03 5BB2 BB28 E15D";}]; + keys = [ { fingerprint = "63D3 F436 EDE8 7E1F 1292 24AF FC03 5BB2 BB28 E15D"; } ]; }; lejonet = { email = "daniel@kuehn.se"; @@ -14220,12 +14220,12 @@ List of NixOS maintainers. lenny = { name = "Lenny."; matrix = "@lenny:flipdot.org"; - keys = [{fingerprint = "6D63 2D4D 0CFE 8D53 F5FD C7ED 738F C800 6E9E A634";}]; + keys = [ { fingerprint = "6D63 2D4D 0CFE 8D53 F5FD C7ED 738F C800 6E9E A634"; } ]; }; leo248 = { github = "leo248"; githubId = 95365184; - keys = [{fingerprint = "81E3 418D C1A2 9687 2C4D 96DC BB1A 818F F295 26D2";}]; + keys = [ { fingerprint = "81E3 418D C1A2 9687 2C4D 96DC BB1A 818F F295 26D2"; } ]; name = "leo248"; }; leo60228 = { @@ -14234,7 +14234,7 @@ List of NixOS maintainers. github = "leo60228"; githubId = 8355305; name = "leo60228"; - keys = [{fingerprint = "5BE4 98D5 1C24 2CCD C21A 4604 AC6F 4BA0 78E6 7833";}]; + keys = [ { fingerprint = "5BE4 98D5 1C24 2CCD C21A 4604 AC6F 4BA0 78E6 7833"; } ]; }; leona = { email = "nix@leona.is"; @@ -14257,7 +14257,7 @@ List of NixOS maintainers. leonm1 = { github = "leonm1"; githubId = 32306579; - keys = [{fingerprint = "C12D F14B DC9D 64E1 44C3 4D8A 755C DA4E 5923 416A";}]; + keys = [ { fingerprint = "C12D F14B DC9D 64E1 44C3 4D8A 755C DA4E 5923 416A"; } ]; matrix = "@mattleon:matrix.org"; name = "Matt Leon"; }; @@ -14309,7 +14309,7 @@ List of NixOS maintainers. email = "lexugeyky@outlook.com"; github = "LEXUGE"; githubId = 13804737; - keys = [{fingerprint = "7FE2 113A A08B 695A C8B8 DDE6 AE53 B4C2 E58E DD45";}]; + keys = [ { fingerprint = "7FE2 113A A08B 695A C8B8 DDE6 AE53 B4C2 E58E DD45"; } ]; }; lf- = { name = "Jade Lovelace"; @@ -14370,7 +14370,7 @@ List of NixOS maintainers. github = "Liassica"; githubId = 115422798; name = "Liassica"; - keys = [{fingerprint = "83BE 3033 6164 B971 FA82 7036 0D34 0E59 4980 7BDD";}]; + keys = [ { fingerprint = "83BE 3033 6164 B971 FA82 7036 0D34 0E59 4980 7BDD"; } ]; }; liberodark = { email = "liberodark@gmail.com"; @@ -14440,7 +14440,7 @@ List of NixOS maintainers. email = "olai@olai.dev"; github = "LilleAila"; githubId = 67327023; - keys = [{fingerprint = "8185 29F9 BB4C 33F0 69BB 9782 D1AC CDCF 2B9B 9799";}]; + keys = [ { fingerprint = "8185 29F9 BB4C 33F0 69BB 9782 D1AC CDCF 2B9B 9799"; } ]; }; lillycham = { email = "lillycat332@gmail.com"; @@ -14472,7 +14472,7 @@ List of NixOS maintainers. matrix = "@me:linj.tech"; github = "jian-lin"; githubId = 75130626; - keys = [{fingerprint = "80EE AAD8 43F9 3097 24B5 3D7E 27E9 7B91 E63A 7FF8";}]; + keys = [ { fingerprint = "80EE AAD8 43F9 3097 24B5 3D7E 27E9 7B91 E63A 7FF8"; } ]; }; link00000000 = { email = "crandall.logan@gmail.com"; @@ -14536,7 +14536,7 @@ List of NixOS maintainers. github = "livnev"; githubId = 3964494; name = "Lev Livnev"; - keys = [{fingerprint = "74F5 E5CC 19D3 B5CB 608F 6124 68FF 81E6 A785 0F49";}]; + keys = [ { fingerprint = "74F5 E5CC 19D3 B5CB 608F 6124 68FF 81E6 A785 0F49"; } ]; }; liyangau = { email = "d@aufomm.com"; @@ -14579,7 +14579,7 @@ List of NixOS maintainers. github = "LoCrealloc"; githubId = 64095253; name = "LoC"; - keys = [{fingerprint = "DCCE F73B 209A 6024 CAE7 F926 5563 EB4A 8634 4F15";}]; + keys = [ { fingerprint = "DCCE F73B 209A 6024 CAE7 F926 5563 EB4A 8634 4F15"; } ]; }; locallycompact = { email = "dan.firth@homotopic.tech"; @@ -14593,7 +14593,7 @@ List of NixOS maintainers. github = "lockejan"; githubId = 25434434; name = "Jan Schmitt"; - keys = [{fingerprint = "1763 9903 2D7C 5B82 5D5A 0EAD A2BC 3C6F 1435 1991";}]; + keys = [ { fingerprint = "1763 9903 2D7C 5B82 5D5A 0EAD A2BC 3C6F 1435 1991"; } ]; }; locochoco = { email = "contact@locochoco.dev"; @@ -14626,7 +14626,7 @@ List of NixOS maintainers. github = "legendofmiracles"; githubId = 30902201; name = "legendofmiracles"; - keys = [{fingerprint = "CC50 F82C 985D 2679 0703 AF15 19B0 82B3 DEFE 5451";}]; + keys = [ { fingerprint = "CC50 F82C 985D 2679 0703 AF15 19B0 82B3 DEFE 5451"; } ]; }; lonerOrz = { email = "2788892716@qq.com"; @@ -14664,7 +14664,7 @@ List of NixOS maintainers. matrix = "@lordmzte:mzte.de"; github = "LordMZTE"; githubId = 28735087; - keys = [{fingerprint = "AB47 3D70 53D2 74CA DC2C 230C B648 02DC 33A6 4FF6";}]; + keys = [ { fingerprint = "AB47 3D70 53D2 74CA DC2C 230C B648 02DC 33A6 4FF6"; } ]; }; lorenz = { name = "Lorenz Brun"; @@ -14720,7 +14720,7 @@ List of NixOS maintainers. github = "lovesegfault"; githubId = 7243783; name = "Bernardo Meurer"; - keys = [{fingerprint = "F193 7596 57D5 6DA4 CCD4 786B F4C0 D53B 8D14 C246";}]; + keys = [ { fingerprint = "F193 7596 57D5 6DA4 CCD4 786B F4C0 D53B 8D14 C246"; } ]; }; lowfatcomputing = { email = "andreas.wagner@lowfatcomputing.org"; @@ -14740,7 +14740,7 @@ List of NixOS maintainers. github = "loispostula"; githubId = 1423612; name = "Loïs Postula"; - keys = [{fingerprint = "0B4A E7C7 D3B7 53F5 3B3D 774C 3819 3C6A 09C3 9ED1";}]; + keys = [ { fingerprint = "0B4A E7C7 D3B7 53F5 3B3D 774C 3819 3C6A 09C3 9ED1"; } ]; }; lrewega = { email = "lrewega@c32.ca"; @@ -14790,7 +14790,7 @@ List of NixOS maintainers. githubId = 153414530; matrix = "@ltstf1re:converser.eu"; name = "Little Starfire"; - keys = [{fingerprint = "FE6C C3C9 2ACF 4367 2B56 5B22 8603 2ACC 051A 873D";}]; + keys = [ { fingerprint = "FE6C C3C9 2ACF 4367 2B56 5B22 8603 2ACC 051A 873D"; } ]; }; lu15w1r7h = { email = "lwirth2000@gmail.com"; @@ -14815,7 +14815,7 @@ List of NixOS maintainers. github = "lucas-deangelis"; githubId = 55180995; name = "Lucas De Angelis"; - keys = [{fingerprint = "3C8B D3AD 93BB 1F36 B8FF 30BD 8627 E5ED F74B 5BF4";}]; + keys = [ { fingerprint = "3C8B D3AD 93BB 1F36 B8FF 30BD 8627 E5ED F74B 5BF4"; } ]; }; lucasbergman = { email = "lucas@bergmans.us"; @@ -14870,7 +14870,7 @@ List of NixOS maintainers. github = "ludovicopiero"; githubId = 44255157; name = "Ludovico Piero"; - keys = [{fingerprint = "72CA 4F61 46C6 0DAB 6193 4D35 3911 DD27 6CFE 779C";}]; + keys = [ { fingerprint = "72CA 4F61 46C6 0DAB 6193 4D35 3911 DD27 6CFE 779C"; } ]; }; lufia = { email = "lufia@lufia.org"; @@ -14883,7 +14883,7 @@ List of NixOS maintainers. email = "luflosi@luflosi.de"; github = "Luflosi"; githubId = 15217907; - keys = [{fingerprint = "66D1 3048 2B5F 2069 81A6 6B83 6F98 7CCF 224D 20B9";}]; + keys = [ { fingerprint = "66D1 3048 2B5F 2069 81A6 6B83 6F98 7CCF 224D 20B9"; } ]; }; luftmensch-luftmensch = { email = "valentinobocchetti59@gmail.com"; @@ -14902,7 +14902,7 @@ List of NixOS maintainers. github = "propet"; githubId = 8515861; name = "Luis D. Aranda Sánchez"; - keys = [{fingerprint = "AB7C 81F4 9E07 CC64 F3E7 BC25 DCAC C6F4 AAFC C04E";}]; + keys = [ { fingerprint = "AB7C 81F4 9E07 CC64 F3E7 BC25 DCAC C6F4 AAFC C04E"; } ]; }; luisnquin = { email = "lpaandres2020@gmail.com"; @@ -14929,7 +14929,7 @@ List of NixOS maintainers. name = "Luiz Ribeiro"; github = "luizribeiro"; githubId = 112069; - keys = [{fingerprint = "97A0 AE5E 03F3 499B 7D7A 65C6 76A4 1432 37EF 5817";}]; + keys = [ { fingerprint = "97A0 AE5E 03F3 499B 7D7A 65C6 76A4 1432 37EF 5817"; } ]; }; lukas-heiligenbrunner = { email = "lukas.heiligenbrunner@gmail.com"; @@ -15107,7 +15107,7 @@ List of NixOS maintainers. email = "umutinanerdogan@proton.me"; github = "lzcunt"; githubId = 40492846; - keys = [{fingerprint = "B766 7717 1644 5ABC DE82 94AA 4679 BF7D CC04 4783";}]; + keys = [ { fingerprint = "B766 7717 1644 5ABC DE82 94AA 4679 BF7D CC04 4783"; } ]; matrix = "@sananatheskenana:matrix.org"; name = "sanana the skenana"; }; @@ -15159,7 +15159,7 @@ List of NixOS maintainers. email = "max@haland.org"; github = "mabster314"; githubId = 5741741; - keys = [{fingerprint = "71EF 8F1F 0C24 8B4D 5CDC 1B47 74B3 D790 77EE 37A8";}]; + keys = [ { fingerprint = "71EF 8F1F 0C24 8B4D 5CDC 1B47 74B3 D790 77EE 37A8"; } ]; }; mac-chaffee = { name = "Mac Chaffee"; @@ -15171,7 +15171,7 @@ List of NixOS maintainers. name = "Ian Macalinao"; github = "macalinao"; githubId = 401263; - keys = [{fingerprint = "1147 43F1 E707 6F3E 6F4B 2C96 B9A8 B592 F126 F8E8";}]; + keys = [ { fingerprint = "1147 43F1 E707 6F3E 6F4B 2C96 B9A8 B592 F126 F8E8"; } ]; }; macronova = { name = "Sicheng Pan"; @@ -15179,7 +15179,7 @@ List of NixOS maintainers. matrix = "@macronova:invariantspace.com"; github = "Sicheng-Pan"; githubId = 60079945; - keys = [{fingerprint = "7590 C9DD E19D 4497 9EE9 0B14 CE96 9670 FB4B 4A56";}]; + keys = [ { fingerprint = "7590 C9DD E19D 4497 9EE9 0B14 CE96 9670 FB4B 4A56"; } ]; }; madeddie = { email = "edwin@madtech.cx"; @@ -15212,7 +15212,7 @@ List of NixOS maintainers. github = "m-rey"; githubId = 42996147; name = "Mæve"; - keys = [{fingerprint = "96C9 D086 CC9D 7BD7 EF24 80E2 9168 796A 1CC3 AEA2";}]; + keys = [ { fingerprint = "96C9 D086 CC9D 7BD7 EF24 80E2 9168 796A 1CC3 AEA2"; } ]; }; maeve-oake = { email = "maeve@oa.ke"; @@ -15245,8 +15245,8 @@ List of NixOS maintainers. github = "magistau"; githubId = 43097806; keys = [ - {fingerprint = "C7EA B182 2AB1 246C 0FB8 DD72 0514 0B67 902C D3AF";} - {fingerprint = "DA77 EDDB 4AF5 244C 665E 9176 A05E A86A 5834 1AA8";} + { fingerprint = "C7EA B182 2AB1 246C 0FB8 DD72 0514 0B67 902C D3AF"; } + { fingerprint = "DA77 EDDB 4AF5 244C 665E 9176 A05E A86A 5834 1AA8"; } ]; }; magneticflux- = { @@ -15254,7 +15254,7 @@ List of NixOS maintainers. github = "magneticflux-"; githubId = 9124288; name = "Mitchell Skaggs"; - keys = [{fingerprint = "CA2A 3324 43A7 BD99 8FCE DFC4 4EB0 FECB 84AE 8967";}]; + keys = [ { fingerprint = "CA2A 3324 43A7 BD99 8FCE DFC4 4EB0 FECB 84AE 8967"; } ]; }; magnetophon = { email = "bart@magnetophon.nl"; @@ -15303,7 +15303,7 @@ List of NixOS maintainers. githubId = 19927330; name = "Maiko Tan"; keys = [ - {fingerprint = "9C68 989F ECF9 8993 3225 96DD 970A 6794 990C 52AE";} + { fingerprint = "9C68 989F ECF9 8993 3225 96DD 970A 6794 990C 52AE"; } ]; }; majesticmullet = { @@ -15340,7 +15340,7 @@ List of NixOS maintainers. github = "makuru-org"; githubId = 58048293; name = "Makuru"; - keys = [{fingerprint = "5B22 7123 362F DEF1 8F79 BF2B 4792 3A0F EEB5 51C7";}]; + keys = [ { fingerprint = "5B22 7123 362F DEF1 8F79 BF2B 4792 3A0F EEB5 51C7"; } ]; }; malbarbo = { email = "malbarbo@gmail.com"; @@ -15353,7 +15353,7 @@ List of NixOS maintainers. email = "abdelmalik.najhi@stud.hs-kempten.de"; github = "malikwirin"; githubId = 117918464; - keys = [{fingerprint = "B5ED 595C 8C7E 133C 6B68 63C8 CFEF 1E35 0351 F72D";}]; + keys = [ { fingerprint = "B5ED 595C 8C7E 133C 6B68 63C8 CFEF 1E35 0351 F72D"; } ]; }; malo = { email = "mbourgon@gmail.com"; @@ -15400,7 +15400,7 @@ List of NixOS maintainers. email = "me@mange.dev"; github = "Mange"; githubId = 1599; - keys = [{fingerprint = "2EA6 F4AA 110A 1BF2 2275 19A9 0443 C69F 6F02 2CDE";}]; + keys = [ { fingerprint = "2EA6 F4AA 110A 1BF2 2275 19A9 0443 C69F 6F02 2CDE"; } ]; }; mangoiv = { email = "contact@mangoiv.com"; @@ -15469,7 +15469,7 @@ List of NixOS maintainers. github = "marcin-serwin"; githubId = 12128106; email = "marcin@serwin.dev"; - keys = [{fingerprint = "F311 FA15 1A66 1875 0C4D A88D 82F5 C70C DC49 FD1D";}]; + keys = [ { fingerprint = "F311 FA15 1A66 1875 0C4D A88D 82F5 C70C DC49 FD1D"; } ]; }; marcovergueira = { email = "vergueira.marco@gmail.com"; @@ -15614,7 +15614,7 @@ List of NixOS maintainers. github = "marzipankaiser"; githubId = 2551444; name = "Marcial Gaißert"; - keys = [{fingerprint = "B573 5118 0375 A872 FBBF 7770 B629 036B E399 EEE9";}]; + keys = [ { fingerprint = "B573 5118 0375 A872 FBBF 7770 B629 036B E399 EEE9"; } ]; }; masaeedu = { email = "masaeedu@gmail.com"; @@ -15817,7 +15817,7 @@ List of NixOS maintainers. name = "Matthieu Barthel"; github = "MatthieuBarthel"; githubId = 435534; - keys = [{fingerprint = "80EB 0F2B 484A BB80 7BEF 4145 BA23 F10E AADC 2E26";}]; + keys = [ { fingerprint = "80EB 0F2B 484A BB80 7BEF 4145 BA23 F10E AADC 2E26"; } ]; }; matthuszagh = { email = "huszaghmatt@gmail.com"; @@ -15849,7 +15849,7 @@ List of NixOS maintainers. githubId = 5046562; matrix = "@mattsturg:matrix.org"; name = "Matt Sturgeon"; - keys = [{fingerprint = "7082 22EA 1808 E39A 83AC 8B18 4F91 844C ED1A 8299";}]; + keys = [ { fingerprint = "7082 22EA 1808 E39A 83AC 8B18 4F91 844C ED1A 8299"; } ]; }; matusf = { email = "matus.ferech@gmail.com"; @@ -15874,7 +15874,7 @@ List of NixOS maintainers. github = "mawis"; githubId = 2042030; name = "Matthias Wimmer"; - keys = [{fingerprint = "CAEC A12D CE23 37A6 6DFD 17B0 7AC7 631D 70D6 C898";}]; + keys = [ { fingerprint = "CAEC A12D CE23 37A6 6DFD 17B0 7AC7 631D 70D6 C898"; } ]; }; max = { email = "max+nixpkgs@privatevoid.net"; @@ -15894,7 +15894,7 @@ List of NixOS maintainers. github = "max-niederman"; githubId = 19580458; name = "Max Niederman"; - keys = [{fingerprint = "1DE4 424D BF77 1192 5DC4 CF5E 9AED 8814 81D8 444E";}]; + keys = [ { fingerprint = "1DE4 424D BF77 1192 5DC4 CF5E 9AED 8814 81D8 444E"; } ]; }; max06 = { email = "max06.net@outlook.com"; @@ -15907,7 +15907,7 @@ List of NixOS maintainers. github = "maxbrunet"; githubId = 32458727; name = "Maxime Brunet"; - keys = [{fingerprint = "E9A2 EE26 EAC6 B3ED 6C10 61F3 4379 62FF 87EC FE2B";}]; + keys = [ { fingerprint = "E9A2 EE26 EAC6 B3ED 6C10 61F3 4379 62FF 87EC FE2B"; } ]; }; maxdamantus = { email = "maxdamantus@gmail.com"; @@ -16045,7 +16045,7 @@ List of NixOS maintainers. github = "mccurdyc"; githubId = 5546264; name = "Colton J. McCurdy"; - keys = [{fingerprint = "D709 03C8 0BE9 ACDC 14F0 3BFB 77BF E531 397E DE94";}]; + keys = [ { fingerprint = "D709 03C8 0BE9 ACDC 14F0 3BFB 77BF E531 397E DE94"; } ]; }; mcmtroffaes = { email = "matthias.troffaes@gmail.com"; @@ -16058,7 +16058,7 @@ List of NixOS maintainers. github = "mcpar-land"; githubId = 55669980; name = "John McParland"; - keys = [{fingerprint = "39D2 171D D733 C718 DD21 285E B326 E14B 05D8 7A4E";}]; + keys = [ { fingerprint = "39D2 171D D733 C718 DD21 285E B326 E14B 05D8 7A4E"; } ]; }; MCSeekeri = { email = "mcseekeri@outlook.com"; @@ -16066,8 +16066,8 @@ List of NixOS maintainers. githubId = 20928094; name = "MCSeekeri"; keys = [ - {fingerprint = "5922 79AB D9D6 85EB 9D16 754C ECDC AD89 5A38 4A12";} - {fingerprint = "0762 A387 F160 76F1 116C BF13 3276 6666 6666 6666";} + { fingerprint = "5922 79AB D9D6 85EB 9D16 754C ECDC AD89 5A38 4A12"; } + { fingerprint = "0762 A387 F160 76F1 116C BF13 3276 6666 6666 6666"; } ]; }; McSinyx = { @@ -16077,8 +16077,8 @@ List of NixOS maintainers. matrix = "@cnx:loang.net"; name = "Nguyễn Gia Phong"; keys = [ - {fingerprint = "E90E 11B8 0493 343B 6132 E394 2714 8B2C 06A2 224B";} - {fingerprint = "838A FE0D 55DC 074E 360F 943A 84B6 9CE6 F3F6 B767";} + { fingerprint = "E90E 11B8 0493 343B 6132 E394 2714 8B2C 06A2 224B"; } + { fingerprint = "838A FE0D 55DC 074E 360F 943A 84B6 9CE6 F3F6 B767"; } ]; }; mcwitt = { @@ -16116,7 +16116,7 @@ List of NixOS maintainers. github = "mdlayher"; githubId = 1926905; name = "Matt Layher"; - keys = [{fingerprint = "D709 03C8 0BE9 ACDC 14F0 3BFB 77BF E531 397E DE94";}]; + keys = [ { fingerprint = "D709 03C8 0BE9 ACDC 14F0 3BFB 77BF E531 397E DE94"; } ]; }; mdorman = { email = "mdorman@jaunder.io"; @@ -16154,7 +16154,7 @@ List of NixOS maintainers. github = "meator"; githubId = 67633081; name = "meator"; - keys = [{fingerprint = "7B0F 58A5 E0F1 A2EA 1157 8A73 1A14 CB34 64CB E5BF";}]; + keys = [ { fingerprint = "7B0F 58A5 E0F1 A2EA 1157 8A73 1A14 CB34 64CB E5BF"; } ]; }; meditans = { email = "meditans@gmail.com"; @@ -16192,7 +16192,7 @@ List of NixOS maintainers. githubId = 10659529; matrix = "@mel:rnrd.eu"; name = "Mel G."; - keys = [{fingerprint = "D75A C286 ACA7 00B4 D8EC 377D 2082 F8EC 11CC 009B";}]; + keys = [ { fingerprint = "D75A C286 ACA7 00B4 D8EC 377D 2082 F8EC 11CC 009B"; } ]; }; melchips = { email = "truphemus.francois@gmail.com"; @@ -16235,7 +16235,7 @@ List of NixOS maintainers. github = "melvyn2"; githubId = 9157412; name = "melvyn"; - keys = [{fingerprint = "232B 9F00 2153 CA86 849C 9224 25A2 B728 0CE3 AFF6";}]; + keys = [ { fingerprint = "232B 9F00 2153 CA86 849C 9224 25A2 B728 0CE3 AFF6"; } ]; }; mephistophiles = { email = "mussitantesmortem@gmail.com"; @@ -16331,14 +16331,14 @@ List of NixOS maintainers. github = "mhemeryck"; githubId = 5445250; name = "Martijn Hemeryck"; - keys = [{fingerprint = "1B47 7ADA 04B4 7A5C E61A EDE0 1AA3 6833 BC86 F0F1";}]; + keys = [ { fingerprint = "1B47 7ADA 04B4 7A5C E61A EDE0 1AA3 6833 BC86 F0F1"; } ]; }; mhutter = { email = "manuel@hutter.io"; github = "mhutter"; githubId = 346819; name = "Manuel Hutter"; - keys = [{fingerprint = "BE27 20A9 0C16 C351 31E0 B2FB FC31 B4E5 4C4C F892";}]; + keys = [ { fingerprint = "BE27 20A9 0C16 C351 31E0 B2FB FC31 B4E5 4C4C F892"; } ]; }; mi-ael = { email = "miael.oss.1970@gmail.com"; @@ -16351,13 +16351,13 @@ List of NixOS maintainers. github = "miampf"; githubId = 111570799; name = "Mia Motte Mallon"; - keys = [{fingerprint = "7008 92AA 6F32 8CAC 8740 0070 EF03 9364 B5B6 886C";}]; + keys = [ { fingerprint = "7008 92AA 6F32 8CAC 8740 0070 EF03 9364 B5B6 886C"; } ]; }; miangraham = { github = "miangraham"; githubId = 704580; name = "M. Ian Graham"; - keys = [{fingerprint = "8CE3 2906 516F C4D8 D373 308A E189 648A 55F5 9A9F";}]; + keys = [ { fingerprint = "8CE3 2906 516F C4D8 D373 308A E189 648A 55F5 9A9F"; } ]; }; mib = { name = "mib"; @@ -16365,7 +16365,7 @@ List of NixOS maintainers. matrix = "@mib:kanp.ai"; github = "mibmo"; githubId = 87388017; - keys = [{fingerprint = "AB0D C647 B2F7 86EB 045C 7EFE CF6E 67DE D6DC 1E3F";}]; + keys = [ { fingerprint = "AB0D C647 B2F7 86EB 045C 7EFE CF6E 67DE D6DC 1E3F"; } ]; }; mic92 = { email = "joerg@thalheim.io"; @@ -16415,7 +16415,7 @@ List of NixOS maintainers. name = "Michael Glass"; github = "michaelglass"; githubId = 60136; - keys = [{fingerprint = "46AF 8625 D92A 219B 8E6D B7F8 9CDD 3769 1649 1385";}]; + keys = [ { fingerprint = "46AF 8625 D92A 219B 8E6D B7F8 9CDD 3769 1649 1385"; } ]; }; michaelgrahamevans = { email = "michaelgrahamevans@gmail.com"; @@ -16428,7 +16428,7 @@ List of NixOS maintainers. name = "Michael Pacheco"; github = "MichaelPachec0"; githubId = 48970112; - keys = [{fingerprint = "8D12 991F 5558 C501 70B2 779C 7811 46B0 B5F9 5F64";}]; + keys = [ { fingerprint = "8D12 991F 5558 C501 70B2 779C 7811 46B0 B5F9 5F64"; } ]; }; michaelpj = { email = "me@michaelpj.com"; @@ -16484,7 +16484,7 @@ List of NixOS maintainers. github = "midchildan"; githubId = 7343721; name = "midchildan"; - keys = [{fingerprint = "FEF0 AE2D 5449 3482 5F06 40AA 186A 1EDA C5C6 3F83";}]; + keys = [ { fingerprint = "FEF0 AE2D 5449 3482 5F06 40AA 186A 1EDA C5C6 3F83"; } ]; }; midischwarz12 = { email = "midischwarz@proton.me"; @@ -16557,14 +16557,14 @@ List of NixOS maintainers. github = "mikroskeem"; githubId = 3490861; name = "Mark Vainomaa"; - keys = [{fingerprint = "DB43 2895 CF68 F0CE D4B7 EF60 DA01 5B05 B5A1 1B22";}]; + keys = [ { fingerprint = "DB43 2895 CF68 F0CE D4B7 EF60 DA01 5B05 B5A1 1B22"; } ]; }; mikut = { email = "mikut@mikut.dev"; github = "Mikutut"; githubId = 65046942; name = "Marcin Mikuła"; - keys = [{fingerprint = "5547 2A56 AC30 69C9 15C8 B98D 997F 71FA 1D74 6E37";}]; + keys = [ { fingerprint = "5547 2A56 AC30 69C9 15C8 B98D 997F 71FA 1D74 6E37"; } ]; }; milesbreslin = { email = "milesbreslin@gmail.com"; @@ -16631,7 +16631,7 @@ List of NixOS maintainers. github = "minijackson"; githubId = 1200507; name = "Rémi Nicole"; - keys = [{fingerprint = "3196 83D3 9A1B 4DE1 3DC2 51FD FEA8 88C9 F5D6 4F62";}]; + keys = [ { fingerprint = "3196 83D3 9A1B 4DE1 3DC2 51FD FEA8 88C9 F5D6 4F62"; } ]; }; minion3665 = { name = "Skyler Grey"; @@ -16639,7 +16639,7 @@ List of NixOS maintainers. matrix = "@minion3665:matrix.org"; github = "Minion3665"; githubId = 34243578; - keys = [{fingerprint = "D520 AC8D 7C96 9212 5B2B BD3A 1AFD 1025 6B3C 714D";}]; + keys = [ { fingerprint = "D520 AC8D 7C96 9212 5B2B BD3A 1AFD 1025 6B3C 714D"; } ]; }; minizilla = { email = "m.billyzaelani@gmail.com"; @@ -16677,7 +16677,7 @@ List of NixOS maintainers. github = "mirrorwitch"; githubId = 146672255; name = "mirrorwitch"; - keys = [{fingerprint = "C3E7 F8C4 9CBC 9320 D360 B117 8516 D0FA 7D8F 58FC";}]; + keys = [ { fingerprint = "C3E7 F8C4 9CBC 9320 D360 B117 8516 D0FA 7D8F 58FC"; } ]; }; Misaka13514 = { name = "Misaka13514"; @@ -16685,7 +16685,7 @@ List of NixOS maintainers. matrix = "@misaka13514:matrix.org"; github = "Misaka13514"; githubId = 54669781; - keys = [{fingerprint = "293B 93D8 A471 059F 85D7 16A6 5BA9 2099 D9BE 2DAA";}]; + keys = [ { fingerprint = "293B 93D8 A471 059F 85D7 16A6 5BA9 2099 D9BE 2DAA"; } ]; }; misilelab = { name = "misilelab"; @@ -16705,7 +16705,7 @@ List of NixOS maintainers. githubId = 5727578; matrix = "@misterio:matrix.org"; name = "Gabriel Fontes"; - keys = [{fingerprint = "7088 C742 1873 E0DB 97FF 17C2 245C AB70 B4C2 25E9";}]; + keys = [ { fingerprint = "7088 C742 1873 E0DB 97FF 17C2 245C AB70 B4C2 25E9"; } ]; }; mistydemeo = { email = "misty@axo.dev"; @@ -16767,7 +16767,7 @@ List of NixOS maintainers. github = "mkf"; githubId = 7753506; name = "Michał Krzysztof Feiler"; - keys = [{fingerprint = "1E36 9940 CC7E 01C4 CFE8 F20A E35C 2D7C 2C6A C724";}]; + keys = [ { fingerprint = "1E36 9940 CC7E 01C4 CFE8 F20A E35C 2D7C 2C6A C724"; } ]; }; mkg = { email = "mkg@vt.edu"; @@ -16781,7 +16781,7 @@ List of NixOS maintainers. github = "mkg20001"; githubId = 7735145; name = "Maciej Krüger"; - keys = [{fingerprint = "E90C BA34 55B3 6236 740C 038F 0D94 8CE1 9CF4 9C5F";}]; + keys = [ { fingerprint = "E90C BA34 55B3 6236 740C 038F 0D94 8CE1 9CF4 9C5F"; } ]; }; mksafavi = { name = "MK Safavi"; @@ -16794,7 +16794,7 @@ List of NixOS maintainers. github = "mktip"; githubId = 45905717; name = "Mohammad Issa"; - keys = [{fingerprint = "64BE BF11 96C3 DD7A 443E 8314 1DC0 82FA DE5B A863";}]; + keys = [ { fingerprint = "64BE BF11 96C3 DD7A 443E 8314 1DC0 82FA DE5B A863"; } ]; }; mlaradji = { name = "Mohamed Laradji"; @@ -16901,7 +16901,7 @@ List of NixOS maintainers. email = "me@momee.mt"; github = "momeemt"; githubId = 43488453; - keys = [{fingerprint = "D94F EA9F 5B08 F6A1 7B8F EB8B ACB5 4F0C BC6A A7C6";}]; + keys = [ { fingerprint = "D94F EA9F 5B08 F6A1 7B8F EB8B ACB5 4F0C BC6A A7C6"; } ]; }; monaaraj = { name = "Mon Aaraj"; @@ -16939,7 +16939,7 @@ List of NixOS maintainers. email = "chris@cdom.io"; github = "montchr"; githubId = 1757914; - keys = [{fingerprint = "6460 4147 C434 F65E C306 A21F 135E EDD0 F719 34F3";}]; + keys = [ { fingerprint = "6460 4147 C434 F65E C306 A21F 135E EDD0 F719 34F3"; } ]; }; moody = { email = "moody@posixcafe.org"; @@ -16959,14 +16959,14 @@ List of NixOS maintainers. matrix = "@moraxyc:qaq.li"; github = "Moraxyc"; githubId = 69713071; - keys = [{fingerprint = "7DD1 A4DF 7DD6 AEEB F07B 1108 8296 4F3A B1D9 DE79";}]; + keys = [ { fingerprint = "7DD1 A4DF 7DD6 AEEB F07B 1108 8296 4F3A B1D9 DE79"; } ]; }; moredread = { email = "code@apb.name"; github = "Moredread"; githubId = 100848; name = "André-Patrick Bubel"; - keys = [{fingerprint = "4412 38AD CAD3 228D 876C 5455 118C E7C4 24B4 5728";}]; + keys = [ { fingerprint = "4412 38AD CAD3 228D 876C 5455 118C E7C4 24B4 5728"; } ]; }; moretea = { email = "maarten@moretea.nl"; @@ -17014,7 +17014,7 @@ List of NixOS maintainers. email = "motiejus@jakstys.lt"; github = "motiejus"; githubId = 107720; - keys = [{fingerprint = "5F6B 7A8A 92A2 60A4 3704 9BEB 6F13 3A0C 1C28 48D7";}]; + keys = [ { fingerprint = "5F6B 7A8A 92A2 60A4 3704 9BEB 6F13 3A0C 1C28 48D7"; } ]; matrix = "@motiejus:jakstys.lt"; name = "Motiejus Jakštys"; }; @@ -17067,7 +17067,7 @@ List of NixOS maintainers. matrix = "@mrdev023:matrix.org"; github = "mrdev023"; githubId = 11292703; - keys = [{fingerprint = "B19E 3F4A 2D80 6AB4 793F DF2F C73D 37CB ED7B FC77";}]; + keys = [ { fingerprint = "B19E 3F4A 2D80 6AB4 793F DF2F C73D 37CB ED7B FC77"; } ]; }; mredaelli = { email = "massimo@typish.io"; @@ -17128,7 +17128,7 @@ List of NixOS maintainers. name = "Egor Martynov"; github = "mrtnvgr"; githubId = 48406064; - keys = [{fingerprint = "6FAD DB43 D5A5 FE52 6835 0943 5B33 79E9 81EF 48B1";}]; + keys = [ { fingerprint = "6FAD DB43 D5A5 FE52 6835 0943 5B33 79E9 81EF 48B1"; } ]; }; mrVanDalo = { email = "contact@ingolf-wagner.de"; @@ -17142,7 +17142,7 @@ List of NixOS maintainers. name = "Moritz Sanft"; github = "msanft"; githubId = 58110325; - keys = [{fingerprint = "3CAC 1D21 3D97 88FF 149A E116 BB8B 30F5 A024 C31C";}]; + keys = [ { fingerprint = "3CAC 1D21 3D97 88FF 149A E116 BB8B 30F5 A024 C31C"; } ]; }; mschristiansen = { email = "mikkel@rheosystems.com"; @@ -17173,7 +17173,7 @@ List of NixOS maintainers. github = "msgilligan"; githubId = 61612; name = "Sean Gilligan"; - keys = [{fingerprint = "3B66 ACFA D10F 02AA B1D5  2CB1 8DD0 D81D 7D1F C61A";}]; + keys = [ { fingerprint = "3B66 ACFA D10F 02AA B1D5  2CB1 8DD0 D81D 7D1F C61A"; } ]; }; msiedlarek = { email = "mikolaj@siedlarek.pl"; @@ -17252,7 +17252,7 @@ List of NixOS maintainers. email = "mtpham.nixos@protonmail.com"; github = "mtpham99"; githubId = 72663763; - keys = [{fingerprint = "DB3E A12D B291 594A 79C5 F6B3 10AB 6868 37F6 FA3F";}]; + keys = [ { fingerprint = "DB3E A12D B291 594A 79C5 F6B3 10AB 6868 37F6 FA3F"; } ]; }; mtreskin = { email = "zerthurd@gmail.com"; @@ -17308,7 +17308,7 @@ List of NixOS maintainers. github = "muni-corn"; githubId = 33523827; matrix = "@municorn:matrix.org"; - keys = [{fingerprint = "2686 7D83 CD74 CCEF 192F 052E 4B21 310A 52B1 5162";}]; + keys = [ { fingerprint = "2686 7D83 CD74 CCEF 192F 052E 4B21 310A 52B1 5162"; } ]; }; munksgaard = { name = "Philip Munksgaard"; @@ -17316,7 +17316,7 @@ List of NixOS maintainers. github = "Munksgaard"; githubId = 230613; matrix = "@philip:matrix.munksgaard.me"; - keys = [{fingerprint = "5658 4D09 71AF E45F CC29 6BD7 4CE6 2A90 EFC0 B9B2";}]; + keys = [ { fingerprint = "5658 4D09 71AF E45F CC29 6BD7 4CE6 2A90 EFC0 B9B2"; } ]; }; mupdt = { email = "nix@pdtpartners.com"; @@ -17341,7 +17341,7 @@ List of NixOS maintainers. matrix = "@maxime:visonneau.fr"; github = "mvisonneau"; githubId = 1761583; - keys = [{fingerprint = "EC63 0CEA E8BC 5EE5 5C58 F2E3 150D 6F0A E919 8D24";}]; + keys = [ { fingerprint = "EC63 0CEA E8BC 5EE5 5C58 F2E3 150D 6F0A E919 8D24"; } ]; }; mvnetbiz = { email = "mvnetbiz@gmail.com"; @@ -17396,7 +17396,7 @@ List of NixOS maintainers. email = "mymindstorm@evermiss.net"; github = "mymindstorm"; githubId = 27789806; - keys = [{fingerprint = "52B9 A09F 788F 4D1F 0C94 9EBE EE39 A9F3 0C9D 72B5";}]; + keys = [ { fingerprint = "52B9 A09F 788F 4D1F 0C94 9EBE EE39 A9F3 0C9D 72B5"; } ]; }; mynacol = { github = "Mynacol"; @@ -17439,7 +17439,7 @@ List of NixOS maintainers. github = "n-hass"; githubId = 72363381; name = "n-hass"; - keys = [{fingerprint = "FDEE 6116 DBA7 8840 7323 4466 A371 5973 2728 A6A6";}]; + keys = [ { fingerprint = "FDEE 6116 DBA7 8840 7323 4466 A371 5973 2728 A6A6"; } ]; }; n00b0ss = { email = "nixpkgs@n00b0ss.de"; @@ -17459,14 +17459,14 @@ List of NixOS maintainers. github = "n3oney"; githubId = 30625554; matrix = "@neoney:matrix.org"; - keys = [{fingerprint = "9E6A 25F2 C1F2 9D76 ED00 1932 1261 173A 01E1 0298";}]; + keys = [ { fingerprint = "9E6A 25F2 C1F2 9D76 ED00 1932 1261 173A 01E1 0298"; } ]; }; n8henrie = { name = "Nathan Henrie"; email = "nate@n8henrie.com"; github = "n8henrie"; githubId = 1234956; - "keys" = [{"fingerprint" = "F21A 6194 C9DB 9899 CD09 E24E 434B 2C14 B8C3 3422";}]; + "keys" = [ { "fingerprint" = "F21A 6194 C9DB 9899 CD09 E24E 434B 2C14 B8C3 3422"; } ]; }; nadiaholmquist = { name = "Nadia Holmquist Pedersen"; @@ -17509,7 +17509,7 @@ List of NixOS maintainers. github = "nagy"; githubId = 692274; name = "Daniel Nagy"; - keys = [{fingerprint = "F6AE 2C60 9196 A1BC ECD8 7108 1B8E 8DCB 576F B671";}]; + keys = [ { fingerprint = "F6AE 2C60 9196 A1BC ECD8 7108 1B8E 8DCB 576F B671"; } ]; }; nagymathev = { name = "Viktor Nagymathe"; @@ -17521,7 +17521,7 @@ List of NixOS maintainers. github = "trueNAHO"; githubId = 90870942; name = "Noah Pierre Biewesch"; - keys = [{fingerprint = "5FC6 088A FB1A 609D 4532 F919 0C1C 177B 3B64 68E0";}]; + keys = [ { fingerprint = "5FC6 088A FB1A 609D 4532 F919 0C1C 177B 3B64 68E0"; } ]; }; nalbyuites = { email = "ashijit007@gmail.com"; @@ -17557,7 +17557,7 @@ List of NixOS maintainers. email = "hanakretzer@gmail.com"; github = "nanoyaki"; githubId = 144328493; - keys = [{fingerprint = "D89F 440C 6CD7 4753 090F EC7A 4682 C5CB 4D9D EA3C";}]; + keys = [ { fingerprint = "D89F 440C 6CD7 4753 090F EC7A 4682 C5CB 4D9D EA3C"; } ]; }; naora = { name = "Joris Gundermann"; @@ -17586,7 +17586,7 @@ List of NixOS maintainers. github = "nasirhm"; githubId = 35005234; name = "Nasir Hussain"; - keys = [{fingerprint = "7A10 AB8E 0BEC 566B 090C 9BE3 D812 6E55 9CE7 C35D";}]; + keys = [ { fingerprint = "7A10 AB8E 0BEC 566B 090C 9BE3 D812 6E55 9CE7 C35D"; } ]; }; nat-418 = { github = "nat-418"; @@ -17634,14 +17634,14 @@ List of NixOS maintainers. matrix = "@nki:m.nkagami.me"; github = "natsukagami"; githubId = 9061737; - keys = [{fingerprint = "5581 26DC 886F E14D 501D B0F2 D6AD 7B57 A992 460C";}]; + keys = [ { fingerprint = "5581 26DC 886F E14D 501D B0F2 D6AD 7B57 A992 460C"; } ]; }; natsukium = { email = "nixpkgs@natsukium.com"; github = "natsukium"; githubId = 25083790; name = "Tomoya Otabi"; - keys = [{fingerprint = "3D14 6004 004C F882 D519 6CD4 9EA4 5A31 DB99 4C53";}]; + keys = [ { fingerprint = "3D14 6004 004C F882 D519 6CD4 9EA4 5A31 DB99 4C53"; } ]; }; natto1784 = { email = "natto@weirdnatto.in"; @@ -17654,7 +17654,7 @@ List of NixOS maintainers. github = "naufik"; githubId = 8577904; name = "Naufal Fikri"; - keys = [{fingerprint = "1575 D651 E31EC 6117A CF0AA C1A3B 8BBC A515 8835";}]; + keys = [ { fingerprint = "1575 D651 E31EC 6117A CF0AA C1A3B 8BBC A515 8835"; } ]; }; naxdy = { name = "Naxdy"; @@ -17662,7 +17662,7 @@ List of NixOS maintainers. matrix = "@naxdy:naxdy.org"; github = "Naxdy"; githubId = 4532582; - keys = [{fingerprint = "BDEA AB07 909D B96F 4106 85F1 CC15 0758 46BC E91B";}]; + keys = [ { fingerprint = "BDEA AB07 909D B96F 4106 85F1 CC15 0758 46BC E91B"; } ]; }; nazarewk = { name = "Krzysztof Nazarewski"; @@ -17670,7 +17670,7 @@ List of NixOS maintainers. matrix = "@nazarewk:matrix.org"; github = "nazarewk"; githubId = 3494992; - keys = [{fingerprint = "4BFF 0614 03A2 47F0 AA0B 4BC4 916D 8B67 2418 92AE";}]; + keys = [ { fingerprint = "4BFF 0614 03A2 47F0 AA0B 4BC4 916D 8B67 2418 92AE"; } ]; }; nbr = { github = "nbr"; @@ -17696,7 +17696,7 @@ List of NixOS maintainers. github = "ncfavier"; githubId = 4323933; name = "Naïm Favier"; - keys = [{fingerprint = "F3EB 4BBB 4E71 99BC 299C D4E9 95AF CE82 1190 8325";}]; + keys = [ { fingerprint = "F3EB 4BBB 4E71 99BC 299C D4E9 95AF CE82 1190 8325"; } ]; }; nckx = { email = "github@tobias.gr"; @@ -17831,7 +17831,7 @@ List of NixOS maintainers. email = "me@netali.de"; github = "NetaliDev"; githubId = 15304894; - keys = [{fingerprint = "F729 2594 6F58 0B05 8FB3 F271 9C55 E636 426B 40A9";}]; + keys = [ { fingerprint = "F729 2594 6F58 0B05 8FB3 F271 9C55 E636 426B 40A9"; } ]; }; netcrns = { email = "jason.wing@gmx.de"; @@ -17845,7 +17845,7 @@ List of NixOS maintainers. matrix = "@netfox:catgirl.cloud"; github = "0xnetfox"; githubId = 97521402; - keys = [{fingerprint = "E8E9 43D7 EB83 DB77 E41C D87F 9C77 CB70 F2E6 3EF7";}]; + keys = [ { fingerprint = "E8E9 43D7 EB83 DB77 E41C D87F 9C77 CB70 F2E6 3EF7"; } ]; }; netixx = { email = "dev.espinetfrancois@gmail.com"; @@ -17865,7 +17865,7 @@ List of NixOS maintainers. matrix = "@networkexception:nwex.de"; github = "networkException"; githubId = 42888162; - keys = [{fingerprint = "A0B9 48C5 A263 55C2 035F 8567 FBB7 2A94 52D9 1A72";}]; + keys = [ { fingerprint = "A0B9 48C5 A263 55C2 035F 8567 FBB7 2A94 52D9 1A72"; } ]; }; neverbehave = { email = "i@never.pet"; @@ -17933,7 +17933,7 @@ List of NixOS maintainers. github = "nicbk"; githubId = 77309427; name = "Nicolás Kennedy"; - keys = [{fingerprint = "7BC1 77D9 C222 B1DC FB2F 0484 C061 089E FEBF 7A35";}]; + keys = [ { fingerprint = "7BC1 77D9 C222 B1DC FB2F 0484 C061 089E FEBF 7A35"; } ]; }; nicegamer7 = { name = "Kermina Awad"; @@ -17981,7 +17981,7 @@ List of NixOS maintainers. github = "nicolas-goudry"; githubId = 8753998; name = "Nicolas Goudry"; - keys = [{fingerprint = "21B6 A59A 4E89 0B1B 83E3 0CDB 01C8 8C03 5450 9AA9";}]; + keys = [ { fingerprint = "21B6 A59A 4E89 0B1B 83E3 0CDB 01C8 8C03 5450 9AA9"; } ]; }; nicomem = { email = "nix@nicomem.com"; @@ -17994,7 +17994,7 @@ List of NixOS maintainers. github = "nicoonoclaste"; githubId = 1155801; name = "nicoo"; - keys = [{fingerprint = "E44E 9EA5 4B8E 256A FB73 49D3 EC9D 3708 72BC 7A8C";}]; + keys = [ { fingerprint = "E44E 9EA5 4B8E 256A FB73 49D3 EC9D 3708 72BC 7A8C"; } ]; }; nidabdella = { name = "Mohamed Nidabdella"; @@ -18007,7 +18007,7 @@ List of NixOS maintainers. github = "meithecatte"; githubId = 23580910; name = "Jakub Kądziołka"; - keys = [{fingerprint = "E576 BFB2 CF6E B13D F571 33B9 E315 A758 4613 1564";}]; + keys = [ { fingerprint = "E576 BFB2 CF6E B13D F571 33B9 E315 A758 4613 1564"; } ]; }; nielsegberts = { email = "nix@nielsegberts.nl"; @@ -18031,7 +18031,7 @@ List of NixOS maintainers. email = "niklas.2.halonen@aalto.fi"; github = "xhalo32"; githubId = 15152190; - keys = [{fingerprint = "AF3B 80CD A027 245B 51FC 6D9B E83A 373D A5AF 5068";}]; + keys = [ { fingerprint = "AF3B 80CD A027 245B 51FC 6D9B E83A 373D A5AF 5068"; } ]; name = "Niklas Halonen"; }; niklaskorz = { @@ -18052,7 +18052,7 @@ List of NixOS maintainers. email = "mail@nikolaiser.com"; githubId = 5569482; github = "nikolaiser"; - keys = [{fingerprint = "FF23 8141 F4E9 1896 6162 F0CD 980B 9E9C 5686 F13A";}]; + keys = [ { fingerprint = "FF23 8141 F4E9 1896 6162 F0CD 980B 9E9C 5686 F13A"; } ]; }; nikolaizombie1 = { name = "Fabio J. Matos Nieves"; @@ -18102,7 +18102,7 @@ List of NixOS maintainers. github = "nim65s"; githubId = 131929; name = "Guilhem Saurel"; - keys = [{fingerprint = "9B1A 7906 5D2F 2B80 6C8A 5A1C 7D2A CDAF 4653 CF28";}]; + keys = [ { fingerprint = "9B1A 7906 5D2F 2B80 6C8A 5A1C 7D2A CDAF 4653 CF28"; } ]; }; nindouja = { email = "nindouja@proton.me"; @@ -18172,7 +18172,7 @@ List of NixOS maintainers. github = "nixbitcoin"; githubId = 45737139; name = "nixbitcoindev"; - keys = [{fingerprint = "577A 3452 7F3E 2A85 E80F E164 DD11 F9AD 5308 B3BA";}]; + keys = [ { fingerprint = "577A 3452 7F3E 2A85 E80F E164 DD11 F9AD 5308 B3BA"; } ]; }; nixinator = { email = "33lockdown33@protonmail.com"; @@ -18198,7 +18198,7 @@ List of NixOS maintainers. email = "n@nk.je"; github = "NKJe"; githubId = 1102306; - keys = [{fingerprint = "B956 C6A4 22AF 86A0 8F77 A8CA DE3B ADFE CD31 A89D";}]; + keys = [ { fingerprint = "B956 C6A4 22AF 86A0 8F77 A8CA DE3B ADFE CD31 A89D"; } ]; }; nkpvk = { email = "niko.pavlinek@gmail.com"; @@ -18257,7 +18257,7 @@ List of NixOS maintainers. github = "noiioiu"; githubId = 151288161; name = "noiioiu"; - keys = [{fingerprint = "99CC 06D6 1456 3689 CE75 58F3 BF51 F00D 0748 2A89";}]; + keys = [ { fingerprint = "99CC 06D6 1456 3689 CE75 58F3 BF51 F00D 0748 2A89"; } ]; }; noisersup = { email = "patryk@kwiatek.xyz"; @@ -18358,14 +18358,14 @@ List of NixOS maintainers. email = "bandali@gnu.org"; github = "bandali0"; githubId = 1254858; - keys = [{fingerprint = "BE62 7373 8E61 6D6D 1B3A 08E8 A21A 0202 4881 6103";}]; + keys = [ { fingerprint = "BE62 7373 8E61 6D6D 1B3A 08E8 A21A 0202 4881 6103"; } ]; }; notohh = { email = "contact@notohh.dev"; github = "notohh"; githubId = 31116143; name = "notohh"; - keys = [{fingerprint = "C3CB 3B31 AF3F 986C 39E0 BE5B BD47 506D 475E E86D";}]; + keys = [ { fingerprint = "C3CB 3B31 AF3F 986C 39E0 BE5B BD47 506D 475E E86D"; } ]; }; notthebee = { email = "moe@notthebe.ee"; @@ -18489,7 +18489,7 @@ List of NixOS maintainers. githubId = 25458915; name = "Viktor Titov"; keys = [ - {fingerprint = "7CE2 4C42 942D 58EA 99F6 F00A A47E 7374 3EF6 FCC4";} + { fingerprint = "7CE2 4C42 942D 58EA 99F6 F00A A47E 7374 3EF6 FCC4"; } ]; }; nullcube = { @@ -18512,11 +18512,11 @@ List of NixOS maintainers. githubId = 369111; keys = [ # >=2025, stays in one place - {fingerprint = "FD28 F9C9 81C5 D78E 56E8 8311 5C3E B94D 198F 1491";} + { fingerprint = "FD28 F9C9 81C5 D78E 56E8 8311 5C3E B94D 198F 1491"; } # >=2025, travels with me - {fingerprint = "C48F 475F 30A9 B192 3213 D5D5 C6E2 4809 77B2 F2F4";} + { fingerprint = "C48F 475F 30A9 B192 3213 D5D5 C6E2 4809 77B2 F2F4"; } # <=2024 - {fingerprint = "190B DA97 F616 DE35 6899 ED17 F819 F1AF 2FC1 C1FF";} + { fingerprint = "190B DA97 F616 DE35 6899 ED17 F819 F1AF 2FC1 C1FF"; } ]; }; numkem = { @@ -18556,7 +18556,7 @@ List of NixOS maintainers. github = "nyadiia"; githubId = 43252360; name = "Nadia"; - keys = [{fingerprint = "6B51 E324 238A F455 2381 313A 9254 1B0C D2A9 3AD8";}]; + keys = [ { fingerprint = "6B51 E324 238A F455 2381 313A 9254 1B0C D2A9 3AD8"; } ]; }; nyanloutre = { email = "paul@nyanlout.re"; @@ -18587,7 +18587,7 @@ List of NixOS maintainers. github = "nydragon"; email = "nix@ccnlc.eu"; githubId = 56591727; - keys = [{fingerprint = "25FF 8464 F062 7EC0 0129 6A43 14AA 30A8 65EA 1209";}]; + keys = [ { fingerprint = "25FF 8464 F062 7EC0 0129 6A43 14AA 30A8 65EA 1209"; } ]; }; nyukuru = { name = "nyukuru"; @@ -18601,7 +18601,7 @@ List of NixOS maintainers. githubId = 7851175; name = "nzbr"; matrix = "@nzbr:nzbr.de"; - keys = [{fingerprint = "BF3A 3EE6 3144 2C5F C9FB 39A7 6C78 B50B 97A4 2F8A";}]; + keys = [ { fingerprint = "BF3A 3EE6 3144 2C5F C9FB 39A7 6C78 B50B 97A4 2F8A"; } ]; }; nzhang-zh = { email = "n.zhang.hp.au@gmail.com"; @@ -18632,7 +18632,7 @@ List of NixOS maintainers. email = "dev@ob7.us"; github = "ob7"; githubId = 6877929; - keys = [{fingerprint = "5C1C 0251 FA85 8C62 0E96 7AC5 2766 5625 0571 34E4";}]; + keys = [ { fingerprint = "5C1C 0251 FA85 8C62 0E96 7AC5 2766 5625 0571 34E4"; } ]; }; obadz = { email = "obadz-nixos@obadz.com"; @@ -18658,7 +18658,7 @@ List of NixOS maintainers. github = "obfusk"; githubId = 1260687; name = "FC Stegerman"; - keys = [{fingerprint = "D5E4 A51D F8D2 55B9 FAC6 A9BB 2F96 07F0 9B36 0F2D";}]; + keys = [ { fingerprint = "D5E4 A51D F8D2 55B9 FAC6 A9BB 2F96 07F0 9B36 0F2D"; } ]; }; obreitwi = { email = "oliver@breitwieser.eu"; @@ -18683,7 +18683,7 @@ List of NixOS maintainers. github = "ocfox"; githubId = 47410251; name = "ocfox"; - keys = [{fingerprint = "939E F8A5 CED8 7F50 5BB5 B2D0 24BC 2738 5F70 234F";}]; + keys = [ { fingerprint = "939E F8A5 CED8 7F50 5BB5 B2D0 24BC 2738 5F70 234F"; } ]; }; octodi = { name = "octodi"; @@ -18704,7 +18704,7 @@ List of NixOS maintainers. github = "oddlama"; githubId = 31919558; name = "oddlama"; - keys = [{fingerprint = "680A A614 E988 DE3E 84E0 DEFA 503F 6C06 8410 4B0A";}]; + keys = [ { fingerprint = "680A A614 E988 DE3E 84E0 DEFA 503F 6C06 8410 4B0A"; } ]; }; odi = { email = "oliver.dunkl@gmail.com"; @@ -18746,7 +18746,7 @@ List of NixOS maintainers. github = "ohheyrj"; name = "ohheyrj"; githubId = 5339261; - keys = [{fingerprint = "4258 3FE7 12E9 6071 E84D 53C7 6E1D A270 0B72 746D";}]; + keys = [ { fingerprint = "4258 3FE7 12E9 6071 E84D 53C7 6E1D A270 0B72 746D"; } ]; }; oida = { email = "oida@posteo.de"; @@ -18887,7 +18887,7 @@ List of NixOS maintainers. email = "dev@onemoresuza.com"; github = "onemoresuza"; githubId = 106456302; - keys = [{fingerprint = "6FD3 7E64 11C5 C659 2F34 EDBC 4352 D15F B177 F2A8";}]; + keys = [ { fingerprint = "6FD3 7E64 11C5 C659 2F34 EDBC 4352 D15F B177 F2A8"; } ]; }; onixie = { email = "onixie@gmail.com"; @@ -18919,7 +18919,7 @@ List of NixOS maintainers. github = "make-42"; githubId = 17462236; matrix = "@ontake:matrix.ontake.dev"; - keys = [{fingerprint = "36BC 916D DD4E B1EE EE82 4BBF DC95 900F 6DA7 9992";}]; + keys = [ { fingerprint = "36BC 916D DD4E B1EE EE82 4BBF DC95 900F 6DA7 9992"; } ]; }; onthestairs = { email = "austinplatt@gmail.com"; @@ -18944,7 +18944,7 @@ List of NixOS maintainers. email = "oliverwilkes2006@icloud.com"; github = "ooliver1"; githubId = 34910574; - keys = [{fingerprint = "D055 8A23 3947 B7A0 F966 B07F 0B41 0348 9833 7273";}]; + keys = [ { fingerprint = "D055 8A23 3947 B7A0 F966 B07F 0B41 0348 9833 7273"; } ]; }; Oops418 = { email = "oooopsxxx@gmail.com"; @@ -18987,7 +18987,7 @@ List of NixOS maintainers. github = "orhun"; githubId = 24392180; name = "Orhun Parmaksız"; - keys = [{fingerprint = "165E 0FF7 C48C 226E 1EC3 63A7 F834 2482 4B3E 4B90";}]; + keys = [ { fingerprint = "165E 0FF7 C48C 226E 1EC3 63A7 F834 2482 4B3E 4B90"; } ]; }; orichter = { email = "richter-oliver@gmx.net"; @@ -19023,7 +19023,7 @@ List of NixOS maintainers. github = "orzklv"; githubId = 54666588; name = "Sokhibjon Orzikulov"; - keys = [{fingerprint = "00D2 7BC6 8707 0683 FBB9 137C 3C35 D3AF 0DA1 D6A8";}]; + keys = [ { fingerprint = "00D2 7BC6 8707 0683 FBB9 137C 3C35 D3AF 0DA1 D6A8"; } ]; }; osbm = { email = "osmanfbayram@gmail.com"; @@ -19054,7 +19054,7 @@ List of NixOS maintainers. github = "ostrolucky"; githubId = 496233; name = "Gabriel Ostrolucký"; - keys = [{fingerprint = "6611 22A7 B778 6E4A E99A 9D6E C79A D015 19EF B134";}]; + keys = [ { fingerprint = "6611 22A7 B778 6E4A E99A 9D6E C79A D015 19EF B134"; } ]; }; otavio = { email = "otavio.salvador@ossystems.com.br"; @@ -19098,7 +19098,7 @@ List of NixOS maintainers. matrix = "@outfoxxed:outfoxxed.me"; github = "outfoxxed"; githubId = 83010835; - keys = [{fingerprint = "0181 FF89 4F34 7FCC EB06 5710 4C88 A185 FB89 301E";}]; + keys = [ { fingerprint = "0181 FF89 4F34 7FCC EB06 5710 4C88 A185 FB89 301E"; } ]; }; ovlach = { email = "ondrej@vlach.xyz"; @@ -19117,28 +19117,28 @@ List of NixOS maintainers. github = "oxalica"; githubId = 14816024; name = "oxalica"; - keys = [{fingerprint = "F90F FD6D 585C 2BA1 F13D E8A9 7571 654C F88E 31C2";}]; + keys = [ { fingerprint = "F90F FD6D 585C 2BA1 F13D E8A9 7571 654C F88E 31C2"; } ]; }; oxapentane = { email = "blame@oxapentane.com"; github = "gshipunov"; githubId = 1297357; name = "Grigory Shipunov"; - keys = [{fingerprint = "DD09 98E6 CDF2 9453 7FC6 04F9 91FA 5E5B F9AA 901C";}]; + keys = [ { fingerprint = "DD09 98E6 CDF2 9453 7FC6 04F9 91FA 5E5B F9AA 901C"; } ]; }; oxij = { email = "oxij@oxij.org"; github = "oxij"; githubId = 391919; name = "Jan Malakhovski"; - keys = [{fingerprint = "514B B966 B46E 3565 0508 86E8 0E6C A66E 5C55 7AA8";}]; + keys = [ { fingerprint = "514B B966 B46E 3565 0508 86E8 0E6C A66E 5C55 7AA8"; } ]; }; oxzi = { email = "post@0x21.biz"; github = "oxzi"; githubId = 8402811; name = "Alvar Penning"; - keys = [{fingerprint = "EB14 4E67 E57D 27E2 B5A4 CD8C F32A 4563 7FA2 5E31";}]; + keys = [ { fingerprint = "EB14 4E67 E57D 27E2 B5A4 CD8C F32A 4563 7FA2 5E31"; } ]; }; oynqr = { email = "pd-nixpkgs@3b.pm"; @@ -19219,7 +19219,7 @@ List of NixOS maintainers. github = "pagedMov"; githubId = 19557376; name = "Kyler Clay"; - keys = [{fingerprint = "784B 3623 94E7 8F11 0B9D AE0F 56FD CFA6 2A93 B51E";}]; + keys = [ { fingerprint = "784B 3623 94E7 8F11 0B9D AE0F 56FD CFA6 2A93 B51E"; } ]; }; paholg = { email = "paho@paholg.com"; @@ -19269,7 +19269,7 @@ List of NixOS maintainers. matrix = "@panchoh:matrix.org"; github = "panchoh"; githubId = 471059; - keys = [{fingerprint = "4430 F502 8B19 FAF4 A40E C4E8 11E0 447D 4ABB A7D0";}]; + keys = [ { fingerprint = "4430 F502 8B19 FAF4 A40E C4E8 11E0 447D 4ABB A7D0"; } ]; }; panda2134 = { email = "me+nixpkgs@panda2134.site"; @@ -19394,7 +19394,7 @@ List of NixOS maintainers. github = "PatrickDaG"; githubId = 58092422; name = "Patrick"; - keys = [{fingerprint = "5E4C 3D74 80C2 35FE 2F0B D23F 7DD6 A72E C899 617D";}]; + keys = [ { fingerprint = "5E4C 3D74 80C2 35FE 2F0B D23F 7DD6 A72E C899 617D"; } ]; }; patricksjackson = { email = "patrick@jackson.dev"; @@ -19407,7 +19407,7 @@ List of NixOS maintainers. github = "Patryk27"; githubId = 3395477; name = "Patryk Wychowaniec"; - keys = [{fingerprint = "196A BFEC 6A1D D1EC 7594 F8D1 F625 47D0 75E0 9767";}]; + keys = [ { fingerprint = "196A BFEC 6A1D D1EC 7594 F8D1 F625 47D0 75E0 9767"; } ]; }; patryk4815 = { email = "patryk.sondej@gmail.com"; @@ -19474,7 +19474,7 @@ List of NixOS maintainers. github = "pbek"; githubId = 1798101; name = "Patrizio Bekerle"; - keys = [{fingerprint = "E005 48D5 D6AC 812C AAD2 AFFA 9C42 B05E 5913 60DC";}]; + keys = [ { fingerprint = "E005 48D5 D6AC 812C AAD2 AFFA 9C42 B05E 5913 60DC"; } ]; }; pbeucher = { email = "pierre@crafteo.io"; @@ -19589,7 +19589,7 @@ List of NixOS maintainers. github = "cyclic-pentane"; githubId = 74795488; name = "pentane"; - keys = [{fingerprint = "4231 75F6 8360 68C8 2ACB AEDA 63F4 EC2F FE55 0874";}]; + keys = [ { fingerprint = "4231 75F6 8360 68C8 2ACB AEDA 63F4 EC2F FE55 0874"; } ]; }; perchun = { name = "Perchun Pak"; @@ -19655,7 +19655,7 @@ List of NixOS maintainers. github = "peterwilli"; githubId = 1212814; name = "Peter Willemsen"; - keys = [{fingerprint = "A37F D403 88E2 D026 B9F6 9617 5C9D D4BF B96A 28F0";}]; + keys = [ { fingerprint = "A37F D403 88E2 D026 B9F6 9617 5C9D D4BF B96A 28F0"; } ]; }; peti = { email = "simons@cryp.to"; @@ -19674,7 +19674,7 @@ List of NixOS maintainers. github = "petrkozorezov"; githubId = 645017; name = "Petr Kozorezov"; - keys = [{fingerprint = "7F1A 353D 3D6D 9CEF 63A9 B5C6 699F 32D5 9999 7C90";}]; + keys = [ { fingerprint = "7F1A 353D 3D6D 9CEF 63A9 B5C6 699F 32D5 9999 7C90"; } ]; }; petrosagg = { email = "petrosagg@gmail.com"; @@ -19700,7 +19700,7 @@ List of NixOS maintainers. matrix = "@phaer:matrix.org"; github = "phaer"; githubId = 101753; - keys = [{fingerprint = "5D69 CF04 B7BC 2BC1 A567 9267 00BC F29B 3208 0700";}]; + keys = [ { fingerprint = "5D69 CF04 B7BC 2BC1 A567 9267 00BC F29B 3208 0700"; } ]; }; phanirithvij = { name = "Phani Rithvij"; @@ -19715,7 +19715,7 @@ List of NixOS maintainers. github = "leolavaur"; githubId = 82591009; - keys = [{fingerprint = "7756 E88F 3C6A 47A5 C5F0 CDFB AB54 6777 F93E 20BF";}]; + keys = [ { fingerprint = "7756 E88F 3C6A 47A5 C5F0 CDFB AB54 6777 F93E 20BF"; } ]; }; phdyellow = { name = "Phil Dyer"; @@ -19729,7 +19729,7 @@ List of NixOS maintainers. github = "phfroidmont"; githubId = 8150907; - keys = [{fingerprint = "3AC6 F170 F011 33CE 393B CD94 BE94 8AFD 7E78 73BE";}]; + keys = [ { fingerprint = "3AC6 F170 F011 33CE 393B CD94 BE94 8AFD 7E78 73BE"; } ]; }; phijor = { name = "Philipp Joram"; @@ -19748,7 +19748,7 @@ List of NixOS maintainers. matrix = "@phil8o:matrix.org"; github = "philclifford"; githubId = 8797027; - keys = [{fingerprint = "FC15 E59F 0CFA 9329 101B 71D9 92F7 A790 E9BA F1F7";}]; + keys = [ { fingerprint = "FC15 E59F 0CFA 9329 101B 71D9 92F7 A790 E9BA F1F7"; } ]; name = "Phil Clifford"; }; phile314 = { @@ -19762,7 +19762,7 @@ List of NixOS maintainers. name = "Philip de Bruin"; github = "PhiliPdB"; githubId = 7051056; - keys = [{fingerprint = "01AE 5EC2 39D9 CE4B DDB0 166A 4EC5 5FB7 07DC 24C4";}]; + keys = [ { fingerprint = "01AE 5EC2 39D9 CE4B DDB0 166A 4EC5 5FB7 07DC 24C4"; } ]; }; Philipp-M = { email = "philipp@mildenberger.me"; @@ -19920,14 +19920,14 @@ List of NixOS maintainers. github = "pingiun"; githubId = 1576660; name = "Jelle Besseling"; - keys = [{fingerprint = "A3A3 65AE 16ED A7A0 C29C 88F1 9712 452E 8BE3 372E";}]; + keys = [ { fingerprint = "A3A3 65AE 16ED A7A0 C29C 88F1 9712 452E 8BE3 372E"; } ]; }; pinpox = { email = "mail@pablo.tools"; github = "pinpox"; githubId = 1719781; name = "Pablo Ovelleiro Corral"; - keys = [{fingerprint = "D03B 218C AE77 1F77 D7F9 20D9 823A 6154 4264 08D3";}]; + keys = [ { fingerprint = "D03B 218C AE77 1F77 D7F9 20D9 823A 6154 4264 08D3"; } ]; }; piotrkwiecinski = { email = "piokwiecinski+nixpkgs@gmail.com"; @@ -20030,7 +20030,7 @@ List of NixOS maintainers. email = "labadens.pierre+nixpkgs@gmail.com"; github = "plabadens"; githubId = 4303706; - keys = [{fingerprint = "B00F E582 FD3F 0732 EA48 3937 F558 14E4 D687 4375";}]; + keys = [ { fingerprint = "B00F E582 FD3F 0732 EA48 3937 F558 14E4 D687 4375"; } ]; }; pladypus = { name = "Peter Loftus"; @@ -20104,7 +20104,7 @@ List of NixOS maintainers. github = "pmenke-de"; githubId = 898922; name = "Philipp Menke"; - keys = [{fingerprint = "ED54 5EFD 64B6 B5AA EC61 8C16 EB7F 2D4C CBE2 3B69";}]; + keys = [ { fingerprint = "ED54 5EFD 64B6 B5AA EC61 8C16 EB7F 2D4C CBE2 3B69"; } ]; }; pmeunier = { email = "pierre-etienne.meunier@inria.fr"; @@ -20124,7 +20124,7 @@ List of NixOS maintainers. name = "Philip White"; github = "philipmw"; githubId = 1379645; - keys = [{fingerprint = "9AB0 6C94 C3D1 F9D0 B9D9 A832 BC54 6FB3 B16C 8B0B";}]; + keys = [ { fingerprint = "9AB0 6C94 C3D1 F9D0 B9D9 A832 BC54 6FB3 B16C 8B0B"; } ]; }; pmy = { email = "pmy@xqzp.net"; @@ -20161,7 +20161,7 @@ List of NixOS maintainers. github = "pnotequalnp"; githubId = 46154511; name = "Kevin Mullins"; - keys = [{fingerprint = "2CD2 B030 BD22 32EF DF5A 008A 3618 20A4 5DB4 1E9A";}]; + keys = [ { fingerprint = "2CD2 B030 BD22 32EF DF5A 008A 3618 20A4 5DB4 1E9A"; } ]; }; podocarp = { email = "xdjiaxd@gmail.com"; @@ -20263,7 +20263,7 @@ List of NixOS maintainers. github = "poscat0x04"; githubId = 53291983; name = "Poscat Tarski"; - keys = [{fingerprint = "48AD DE10 F27B AFB4 7BB0 CCAF 2D25 95A0 0D08 ACE0";}]; + keys = [ { fingerprint = "48AD DE10 F27B AFB4 7BB0 CCAF 2D25 95A0 0D08 ACE0"; } ]; }; posch = { email = "tp@fonz.de"; @@ -20281,7 +20281,7 @@ List of NixOS maintainers. github = "pouya-abbassi"; githubId = 8519318; name = "Pouya Abbasi"; - keys = [{fingerprint = "8CC7 EB15 3563 4205 E9C2 AAD9 AF5A 5A4A D4FD 8797";}]; + keys = [ { fingerprint = "8CC7 EB15 3563 4205 E9C2 AAD9 AF5A 5A4A D4FD 8797"; } ]; }; poweredbypie = { name = "poweredbypie"; @@ -20330,7 +20330,7 @@ List of NixOS maintainers. github = "pradyuman"; githubId = 9904569; name = "Pradyuman Vig"; - keys = [{fingerprint = "240B 57DE 4271 2480 7CE3 EAC8 4F74 D536 1C4C A31E";}]; + keys = [ { fingerprint = "240B 57DE 4271 2480 7CE3 EAC8 4F74 D536 1C4C A31E"; } ]; }; preisschild = { email = "florian@florianstroeger.com"; @@ -20344,7 +20344,7 @@ List of NixOS maintainers. matrix = "@presto8:matrix.org"; github = "presto8"; githubId = 246631; - keys = [{fingerprint = "3E46 7EF1 54AA A1D0 C7DF A694 E45C B17F 1940 CA52";}]; + keys = [ { fingerprint = "3E46 7EF1 54AA A1D0 C7DF A694 E45C B17F 1940 CA52"; } ]; }; priegger = { email = "philipp@riegger.name"; @@ -20376,7 +20376,7 @@ List of NixOS maintainers. matrix = "@princemachiavelli:matrix.org"; github = "Princemachiavelli"; githubId = 2730968; - keys = [{fingerprint = "DD54 130B ABEC B65C 1F6B 2A38 8312 4F97 A318 EA18";}]; + keys = [ { fingerprint = "DD54 130B ABEC B65C 1F6B 2A38 8312 4F97 A318 EA18"; } ]; }; prit342 = { email = "prithak342@gmail.com"; @@ -20425,8 +20425,8 @@ List of NixOS maintainers. githubId = 7693005; name = "Petr Portnov"; keys = [ - {fingerprint = "884B 08D2 8DFF 6209 1857 C1C7 7E8F C8F7 D1BB 84A3";} - {fingerprint = "AA96 35AA F392 52BF 0E60 825E 1192 2217 F828 8484";} + { fingerprint = "884B 08D2 8DFF 6209 1857 C1C7 7E8F C8F7 D1BB 84A3"; } + { fingerprint = "AA96 35AA F392 52BF 0E60 825E 1192 2217 F828 8484"; } ]; }; progval = { @@ -20439,7 +20439,7 @@ List of NixOS maintainers. name = "ProjectInitiative"; github = "ProjectInitiative"; githubId = 6314611; - keys = [{fingerprint = "EEC7 53FC EAAA FD9E 4DC0 9BB5 CAEB 4185 C226 D76B";}]; + keys = [ { fingerprint = "EEC7 53FC EAAA FD9E 4DC0 9BB5 CAEB 4185 C226 D76B"; } ]; }; prominentretail = { email = "me@jakepark.me"; @@ -20481,7 +20481,7 @@ List of NixOS maintainers. github = "prrlvr"; githubId = 33699501; name = "Pierre-Olivier Rey"; - keys = [{fingerprint = "40A0 78FD 297B 0AC1 E6D8 A119 4D38 49D9 9555 1307";}]; + keys = [ { fingerprint = "40A0 78FD 297B 0AC1 E6D8 A119 4D38 49D9 9555 1307"; } ]; }; prtzl = { email = "matej.blagsic@protonmail.com"; @@ -20494,7 +20494,7 @@ List of NixOS maintainers. github = "prusnak"; githubId = 42201; name = "Pavol Rusnak"; - keys = [{fingerprint = "86E6 792F C27B FD47 8860 C110 91F3 B339 B9A0 2A3D";}]; + keys = [ { fingerprint = "86E6 792F C27B FD47 8860 C110 91F3 B339 B9A0 2A3D"; } ]; }; psanford = { email = "psanford@sanford.io"; @@ -20508,7 +20508,7 @@ List of NixOS maintainers. githubId = 37886; name = "Philipp Schmitt"; matrix = "@pschmitt:one.ems.host"; - keys = [{fingerprint = "9FBF 2ABF FB37 F7F3 F502 44E5 DC43 9C47 EACB 17F9";}]; + keys = [ { fingerprint = "9FBF 2ABF FB37 F7F3 F502 44E5 DC43 9C47 EACB 17F9"; } ]; }; pshirshov = { email = "pshirshov@eml.cc"; @@ -20628,7 +20628,7 @@ List of NixOS maintainers. pwnwriter = { name = "Nabeen Tiwaree"; email = "hi@pwnwriter.me"; - keys = [{fingerprint = "C153 DE7C 0A0D 432E F033 2B0B A524 11EC 5582 DE3A";}]; + keys = [ { fingerprint = "C153 DE7C 0A0D 432E F033 2B0B A524 11EC 5582 DE3A"; } ]; github = "pwnwriter"; githubId = 90331517; }; @@ -20649,7 +20649,7 @@ List of NixOS maintainers. email = "carter@isons.org"; github = "pyrotelekinetic"; githubId = 29682759; - keys = [{fingerprint = "5963 78DB 25AA 608D 2743 D466 5D6A D9AE 71B3 F983";}]; + keys = [ { fingerprint = "5963 78DB 25AA 608D 2743 D466 5D6A D9AE 71B3 F983"; } ]; }; pyrox0 = { name = "Pyrox"; @@ -20657,7 +20657,7 @@ List of NixOS maintainers. matrix = "@pyrox:pyrox.dev"; github = "pyrox0"; githubId = 35778371; - keys = [{fingerprint = "4CA9 72FB ADC8 1416 0F10 3138 FE1D 8A7D 620C 611F";}]; + keys = [ { fingerprint = "4CA9 72FB ADC8 1416 0F10 3138 FE1D 8A7D 620C 611F"; } ]; }; pyxels = { email = "pyxels.dev@gmail.com"; @@ -20689,7 +20689,7 @@ List of NixOS maintainers. github = "qbit"; githubId = 68368; matrix = "@qbit:tapenet.org"; - keys = [{fingerprint = "3586 3350 BFEA C101 DB1A 4AF0 1F81 112D 62A9 ADCE";}]; + keys = [ { fingerprint = "3586 3350 BFEA C101 DB1A 4AF0 1F81 112D 62A9 ADCE"; } ]; }; qdlmcfresh = { name = "Philipp Urlbauer"; @@ -20702,7 +20702,7 @@ List of NixOS maintainers. email = "development@qf0xb.de"; github = "QF0xB"; githubId = 37348361; - keys = [{fingerprint = "9036 0B7D B6B7 8B75 E901 3D11 3FF8 C23C 46F2 CC90";}]; + keys = [ { fingerprint = "9036 0B7D B6B7 8B75 E901 3D11 3FF8 C23C 46F2 CC90"; } ]; }; qjoly = { email = "github@une-pause-cafe.fr"; @@ -20770,7 +20770,7 @@ List of NixOS maintainers. github = "quentinmit"; githubId = 115761; name = "Quentin Smith"; - keys = [{fingerprint = "1C71 A066 5400 AACD 142E B1A0 04EE 05A8 FCEF B697";}]; + keys = [ { fingerprint = "1C71 A066 5400 AACD 142E B1A0 04EE 05A8 FCEF B697"; } ]; }; quentin-m = { email = "me+nix@quentin-machu.fr"; @@ -20831,7 +20831,7 @@ List of NixOS maintainers. githubId = 2768870; name = "Alyssa Ross"; matrix = "@qyliss:fairydust.space"; - keys = [{fingerprint = "7573 56D7 79BB B888 773E 415E 736C CDF9 EF51 BD97";}]; + keys = [ { fingerprint = "7573 56D7 79BB B888 773E 415E 736C CDF9 EF51 BD97"; } ]; }; qyriad = { email = "qyriad@qyriad.me"; @@ -20857,7 +20857,7 @@ List of NixOS maintainers. github = "r17x"; githubId = 16365952; name = "Rin"; - keys = [{fingerprint = "476A F55D 6378 F878 0709 848A 18F9 F516 1CC0 576C";}]; + keys = [ { fingerprint = "476A F55D 6378 F878 0709 848A 18F9 F516 1CC0 576C"; } ]; }; r3dl3g = { email = "redleg@rothfuss-web.de"; @@ -20875,7 +20875,7 @@ List of NixOS maintainers. email = "raven6107@gmail.com"; github = "r4v3n6101"; githubId = 30029970; - keys = [{fingerprint = "FA05 8A29 B45E 06C0 8FE9 4907 05D2 BE42 F3EC D7CC";}]; + keys = [ { fingerprint = "FA05 8A29 B45E 06C0 8FE9 4907 05D2 BE42 F3EC D7CC"; } ]; }; raboof = { email = "arnout@bzzt.net"; @@ -20908,7 +20908,7 @@ List of NixOS maintainers. email = "pr9@tuta.io"; github = "rafa-dot-el"; githubId = 104688305; - keys = [{fingerprint = "5F0B 3EAC F1F9 8155 0946 CDF5 469E 3255 A40D 2AD6";}]; + keys = [ { fingerprint = "5F0B 3EAC F1F9 8155 0946 CDF5 469E 3255 A40D 2AD6"; } ]; }; rafaelgg = { email = "rafael.garcia.gallego@gmail.com"; @@ -20958,7 +20958,7 @@ List of NixOS maintainers. github = "rake5k"; githubId = 13007345; name = "Christian Harke"; - keys = [{fingerprint = "4EBB 30F1 E89A 541A A7F2 52BE 830A 9728 6309 66F4";}]; + keys = [ { fingerprint = "4EBB 30F1 E89A 541A A7F2 52BE 830A 9728 6309 66F4"; } ]; }; rakesh4g = { email = "rakeshgupta4u@gmail.com"; @@ -20984,7 +20984,7 @@ List of NixOS maintainers. email = "nix@caseylink.com"; github = "Ramblurr"; githubId = 14830; - keys = [{fingerprint = "978C 4D08 058B A26E B97C B518 2078 2DBC ACFA ACDA";}]; + keys = [ { fingerprint = "978C 4D08 058B A26E B97C B518 2078 2DBC ACFA ACDA"; } ]; }; ramkromberg = { email = "ramkromberg@mail.com"; @@ -21005,7 +21005,7 @@ List of NixOS maintainers. matrix = "@rane:junkyard.systems"; github = "digitalrane"; githubId = 1829286; - keys = [{fingerprint = "EBB6 0EE1 488F D04C D922 C039 AE96 1AF5 9D40 10B5";}]; + keys = [ { fingerprint = "EBB6 0EE1 488F D04C D922 C039 AE96 1AF5 9D40 10B5"; } ]; }; ranfdev = { email = "ranfdev@gmail.com"; @@ -21069,7 +21069,7 @@ List of NixOS maintainers. githubId = 98173832; name = "Balthazar Patiachvili"; matrix = "@ratcornu:skaven.org"; - keys = [{fingerprint = "1B91 F087 3D06 1319 D3D0 7F91 FA47 BDA2 6048 9ADA";}]; + keys = [ { fingerprint = "1B91 F087 3D06 1319 D3D0 7F91 FA47 BDA2 6048 9ADA"; } ]; }; ratsclub = { email = "victor@freire.dev.br"; @@ -21135,7 +21135,7 @@ List of NixOS maintainers. name = "Rocky Breslow"; github = "rbreslow"; githubId = 1774125; - keys = [{fingerprint = "B5B7 BCA0 EE6F F31E 263A 69E3 A0D3 2ACC A38B 88ED";}]; + keys = [ { fingerprint = "B5B7 BCA0 EE6F F31E 263A 69E3 A0D3 2ACC A38B 88ED"; } ]; }; rbrewer = { email = "rwb123@gmail.com"; @@ -21166,7 +21166,7 @@ List of NixOS maintainers. github = "rconybea"; githubId = 8570969; name = "Roland Conybeare"; - keys = [{fingerprint = "bw5Cr/4ul1C2UvxopphbZbFI1i5PCSnOmPID7mJ/Ogo";}]; + keys = [ { fingerprint = "bw5Cr/4ul1C2UvxopphbZbFI1i5PCSnOmPID7mJ/Ogo"; } ]; }; rdnetto = { email = "rdnetto@gmail.com"; @@ -21188,7 +21188,7 @@ List of NixOS maintainers. githubId = 7413633; keys = [ # compare with https://keybase.io/reckenrode - {fingerprint = "01D7 5486 3A6D 64EA AC77 0D26 FBF1 9A98 2CCE 0048";} + { fingerprint = "01D7 5486 3A6D 64EA AC77 0D26 FBF1 9A98 2CCE 0048"; } ]; }; redbaron = { @@ -21304,7 +21304,7 @@ List of NixOS maintainers. email = "remy@remysplace.de"; github = "remyvv"; githubId = 2862815; - keys = [{fingerprint = "1A76 F3A3 F843 2D5F D7E5 D07B 6FD8 F273 5BEB D1FC";}]; + keys = [ { fingerprint = "1A76 F3A3 F843 2D5F D7E5 D07B 6FD8 F273 5BEB D1FC"; } ]; }; renatoGarcia = { email = "fgarcia.renato@gmail.com"; @@ -21323,7 +21323,7 @@ List of NixOS maintainers. email = "bj.ren.coding@outlook.com"; github = "rennsax"; githubId = 93167100; - keys = [{fingerprint = "9075 CEF8 9850 D261 6599 641A A2C9 36D5 B88C 139C";}]; + keys = [ { fingerprint = "9075 CEF8 9850 D261 6599 641A A2C9 36D5 B88C 139C"; } ]; }; renpenguin = { email = "redpenguin777@yahoo.com"; @@ -21371,7 +21371,7 @@ List of NixOS maintainers. name = "Tassilo Tanneberger"; github = "tanneberger"; githubId = 32239737; - keys = [{fingerprint = "91EB E870 1639 1323 642A 6803 B966 009D 57E6 9CC6";}]; + keys = [ { fingerprint = "91EB E870 1639 1323 642A 6803 B966 009D 57E6 9CC6"; } ]; }; rewine = { email = "lhongxu@outlook.com"; @@ -21560,8 +21560,8 @@ List of NixOS maintainers. github = "rissson"; githubId = 18313093; keys = [ - {fingerprint = "8A0E 6A7C 08AB B9DE 67DE 2A13 F6FD 87B1 5C26 3EC9";} - {fingerprint = "C0A7 A9BB 115B C857 4D75 EA99 BBB7 A680 1DF1 E03F";} + { fingerprint = "8A0E 6A7C 08AB B9DE 67DE 2A13 F6FD 87B1 5C26 3EC9"; } + { fingerprint = "C0A7 A9BB 115B C857 4D75 EA99 BBB7 A680 1DF1 E03F"; } ]; }; ritiek = { @@ -21571,7 +21571,7 @@ List of NixOS maintainers. github = "ritiek"; githubId = 20314742; keys = [ - {fingerprint = "66FF 6099 7B04 845F F4C0 CB4F EB6F C9F9 FC96 4257";} + { fingerprint = "66FF 6099 7B04 845F F4C0 CB4F EB6F C9F9 FC96 4257"; } ]; }; rixed = { @@ -21653,7 +21653,7 @@ List of NixOS maintainers. github = "rnhmjoj"; githubId = 2817565; name = "Michele Guerini Rocco"; - keys = [{fingerprint = "92B2 904F D293 C94D C4C9 3E6B BFBA F4C9 75F7 6450";}]; + keys = [ { fingerprint = "92B2 904F D293 C94D C4C9 3E6B BFBA F4C9 75F7 6450"; } ]; }; roastiek = { email = "r.dee.b.b@gmail.com"; @@ -21732,7 +21732,7 @@ List of NixOS maintainers. email = "nix@ireas.org"; github = "robinkrahl"; githubId = 165115; - keys = [{fingerprint = "EC7E F0F9 B681 4C24 6236 3842 B755 6972 702A FD45";}]; + keys = [ { fingerprint = "EC7E F0F9 B681 4C24 6236 3842 B755 6972 702A FD45"; } ]; name = "Robin Krahl"; }; roblabla = { @@ -21745,7 +21745,7 @@ List of NixOS maintainers. email = "r@sliwi.org"; github = "robsliwi"; githubId = 14806293; - keys = [{fingerprint = "37F4 9AB8 340B AAE2 4DB8 4322 08BD 6076 8CCE 08F1";}]; + keys = [ { fingerprint = "37F4 9AB8 340B AAE2 4DB8 4322 08BD 6076 8CCE 08F1"; } ]; name = "Robert Sliwinski"; }; robwalt = { @@ -21843,7 +21843,7 @@ List of NixOS maintainers. github = "Rookeur"; githubId = 57438432; name = "Adrien Langou"; - keys = [{fingerprint = "3B8F FC41 0094 2CB4 5A2A 7DF2 5A44 DA8F 9071 91B0";}]; + keys = [ { fingerprint = "3B8F FC41 0094 2CB4 5A2A 7DF2 5A44 DA8F 9071 91B0"; } ]; }; roosemberth = { email = "roosembert.palacios+nixpkgs@posteo.ch"; @@ -21851,13 +21851,13 @@ List of NixOS maintainers. github = "roosemberth"; githubId = 3621083; name = "Roosembert (Roosemberth) Palacios"; - keys = [{fingerprint = "78D9 1871 D059 663B 6117 7532 CAAA ECE5 C224 2BB7";}]; + keys = [ { fingerprint = "78D9 1871 D059 663B 6117 7532 CAAA ECE5 C224 2BB7"; } ]; }; rople380 = { name = "rople380"; github = "rople380"; githubId = 55679162; - keys = [{fingerprint = "1401 1B63 393D 16C1 AA9C C521 8526 B757 4A53 6236";}]; + keys = [ { fingerprint = "1401 1B63 393D 16C1 AA9C C521 8526 B757 4A53 6236"; } ]; }; rorosen = { email = "robert.rose@mailbox.org"; @@ -21883,7 +21883,7 @@ List of NixOS maintainers. matrix = "@rosscomputerguy:matrix.org"; github = "RossComputerGuy"; githubId = 19699320; - keys = [{fingerprint = "FD5D F7A8 85BB 378A 0157 5356 B09C 4220 3566 9AF8";}]; + keys = [ { fingerprint = "FD5D F7A8 85BB 378A 0157 5356 B09C 4220 3566 9AF8"; } ]; }; RossSmyth = { name = "Ross Smyth"; @@ -21955,14 +21955,14 @@ List of NixOS maintainers. github = "rrbutani"; githubId = 7833358; matrix = "@rbutani:matrix.org"; - keys = [{fingerprint = "7DCA 5615 8AB2 621F 2F32 9FF4 1C7C E491 479F A273";}]; + keys = [ { fingerprint = "7DCA 5615 8AB2 621F 2F32 9FF4 1C7C E491 479F A273"; } ]; name = "Rahul Butani"; }; rseichter = { email = "nixos.org@seichter.de"; github = "rseichter"; githubId = 30873939; - keys = [{fingerprint = "6AE2 A847 23D5 6D98 5B34 0BC0 8E5F A470 9F69 E911";}]; + keys = [ { fingerprint = "6AE2 A847 23D5 6D98 5B34 0BC0 8E5F A470 9F69 E911"; } ]; name = "Ralph Seichter"; }; rskew = { @@ -22092,7 +22092,7 @@ List of NixOS maintainers. email = "hi@grass.show"; github = "running-grass"; githubId = 17241154; - keys = [{fingerprint = "5156 0FAB FF32 83EC BC8C EA13 9344 3660 9397 0138";}]; + keys = [ { fingerprint = "5156 0FAB FF32 83EC BC8C EA13 9344 3660 9397 0138"; } ]; }; rushmorem = { email = "rushmore@webenchanter.com"; @@ -22195,7 +22195,7 @@ List of NixOS maintainers. github = "ryane"; githubId = 7346; name = "Ryan Eschinger"; - keys = [{fingerprint = "E4F4 1EAB BF0F C785 06D8 62EF EF68 CF41 D42A 593D";}]; + keys = [ { fingerprint = "E4F4 1EAB BF0F C785 06D8 62EF EF68 CF41 D42A 593D"; } ]; }; ryangibb = { email = "ryan@freumh.org"; @@ -22238,7 +22238,7 @@ List of NixOS maintainers. github = "rycee"; githubId = 798147; name = "Robert Helgesson"; - keys = [{fingerprint = "36CA CF52 D098 CC0E 78FB 0CB1 3573 356C 25C4 24D4";}]; + keys = [ { fingerprint = "36CA CF52 D098 CC0E 78FB 0CB1 3573 356C 25C4 24D4"; } ]; }; ryneeverett = { email = "ryneeverett@gmail.com"; @@ -22263,27 +22263,27 @@ List of NixOS maintainers. github = "rypervenche"; githubId = 1411504; name = "rypervenche"; - keys = [{fingerprint = "1198 7A9F 03AE 47F0 4919 E334 6A41 2C4A ECE1 66EF";}]; + keys = [ { fingerprint = "1198 7A9F 03AE 47F0 4919 E334 6A41 2C4A ECE1 66EF"; } ]; }; rytone = { email = "max@ryt.one"; github = "rastertail"; githubId = 8082305; name = "Maxwell Beck"; - keys = [{fingerprint = "D260 79E3 C2BC 2E43 905B D057 BB3E FA30 3760 A0DB";}]; + keys = [ { fingerprint = "D260 79E3 C2BC 2E43 905B D057 BB3E FA30 3760 A0DB"; } ]; }; rytswd = { email = "rytswd@gmail.com"; github = "rytswd"; githubId = 23435099; name = "Ryota"; - keys = [{fingerprint = "2FAC 1A25 5175 125E F60B BC04 B89E C8B6 EE43 39C4";}]; + keys = [ { fingerprint = "2FAC 1A25 5175 125E F60B BC04 B89E C8B6 EE43 39C4"; } ]; }; ryze = { name = "Ryze"; github = "ryze312"; githubId = 50497128; - keys = [{fingerprint = "73D5 BFF5 0AD7 F3C1 AF1A AC24 9B29 6C5C EAEA AAC1";}]; + keys = [ { fingerprint = "73D5 BFF5 0AD7 F3C1 AF1A AC24 9B29 6C5C EAEA AAC1"; } ]; }; rzetterberg = { email = "richard.zetterberg@gmail.com"; @@ -22311,7 +22311,7 @@ List of NixOS maintainers. matrix = "@mark.sagikazar:matrix.org"; github = "sagikazarmark"; githubId = 1226384; - keys = [{fingerprint = "E628 C811 6FB8 1657 F706 4EA4 F251 ADDC 9D04 1C7E";}]; + keys = [ { fingerprint = "E628 C811 6FB8 1657 F706 4EA4 F251 ADDC 9D04 1C7E"; } ]; }; sailord = { name = "Sailord"; @@ -22325,7 +22325,7 @@ List of NixOS maintainers. matrix = "@sako:imagisphe.re"; github = "Sakooooo"; githubId = 78461130; - keys = [{fingerprint = "CA52 EE7B E681 720E 32B6 6792 FE52 FD65 B76E 4751";}]; + keys = [ { fingerprint = "CA52 EE7B E681 720E 32B6 6792 FE52 FD65 B76E 4751"; } ]; }; samalws = { email = "sam@samalws.com"; @@ -22391,7 +22391,7 @@ List of NixOS maintainers. github = "samlich"; githubId = 1349989; name = "samlich"; - keys = [{fingerprint = "AE8C 0836 FDF6 3FFC 9580 C588 B156 8953 B193 9F1C";}]; + keys = [ { fingerprint = "AE8C 0836 FDF6 3FFC 9580 C588 B156 8953 B193 9F1C"; } ]; }; samlukeyes123 = { email = "samlukeyes123@gmail.com"; @@ -22410,7 +22410,7 @@ List of NixOS maintainers. email = "samuel@smartineau.me"; github = "Samuel-Martineau"; githubId = 44237969; - keys = [{fingerprint = "79A1 CC17 67C7 32B6 A8A2 BF4F 71E0 8761 642D ACD2";}]; + keys = [ { fingerprint = "79A1 CC17 67C7 32B6 A8A2 BF4F 71E0 8761 642D ACD2"; } ]; }; samuela = { email = "skainsworth@gmail.com"; @@ -22423,7 +22423,7 @@ List of NixOS maintainers. email = "samuele.facenda@gmail.com"; github = "SamueleFacenda"; githubId = 92163673; - keys = [{fingerprint = "3BA5 A3DB 3239 E2AC 1F3B 68A0 0DB8 3F58 B259 6271";}]; + keys = [ { fingerprint = "3BA5 A3DB 3239 E2AC 1F3B 68A0 0DB8 3F58 B259 6271"; } ]; }; samuelrivas = { email = "samuelrivas@gmail.com"; @@ -22448,7 +22448,7 @@ List of NixOS maintainers. email = "samyak201@gmail.com"; github = "Samyak2"; githubId = 34161949; - keys = [{fingerprint = "155C F413 0129 C058 9A5F 5524 3658 73F2 F0C6 153B";}]; + keys = [ { fingerprint = "155C F413 0129 C058 9A5F 5524 3658 73F2 F0C6 153B"; } ]; }; sander = { email = "s.vanderburg@tudelft.nl"; @@ -22491,7 +22491,7 @@ List of NixOS maintainers. github = "sascha8a"; githubId = 6937965; name = "Alexander Lampalzer"; - keys = [{fingerprint = "0350 3136 E22C C561 30E3 A4AE 2087 9CCA CD5C D670";}]; + keys = [ { fingerprint = "0350 3136 E22C C561 30E3 A4AE 2087 9CCA CD5C D670"; } ]; }; saschagrunert = { email = "mail@saschagrunert.de"; @@ -22652,7 +22652,7 @@ List of NixOS maintainers. name = "Jamie Quigley"; github = "Sciencentistguy"; githubId = 4983935; - keys = [{fingerprint = "30BB FF3F AB0B BB3E 0435 F83C 8E8F F66E 2AE8 D970";}]; + keys = [ { fingerprint = "30BB FF3F AB0B BB3E 0435 F83C 8E8F F66E 2AE8 D970"; } ]; }; scientiac = { email = "iac@scientiac.space"; @@ -22709,7 +22709,7 @@ List of NixOS maintainers. matrix = "@Scrumplex:duckhub.io"; github = "Scrumplex"; githubId = 11587657; - keys = [{fingerprint = "E173 237A C782 296D 98F5 ADAC E13D FD4B 4712 7951";}]; + keys = [ { fingerprint = "E173 237A C782 296D 98F5 ADAC E13D FD4B 4712 7951"; } ]; }; scvalex = { name = "Alexandru Scvorțov"; @@ -22788,14 +22788,14 @@ List of NixOS maintainers. github = "seberm"; githubId = 212597; name = "Otto Sabart"; - keys = [{fingerprint = "0AF6 4C3B 1F12 14B3 8C8C 5786 1FA2 DBE6 7438 7CC3";}]; + keys = [ { fingerprint = "0AF6 4C3B 1F12 14B3 8C8C 5786 1FA2 DBE6 7438 7CC3"; } ]; }; sebrut = { email = "kontakt@sebastian-rutofski.de"; github = "sebrut"; githubId = 3962409; name = "Sebastian Rutofski"; - keys = [{fingerprint = "F1D4 8061 2830 3AF6 42DC 3867 C37F 3374 2A95 C547";}]; + keys = [ { fingerprint = "F1D4 8061 2830 3AF6 42DC 3867 C37F 3374 2A95 C547"; } ]; }; sebtm = { email = "mail@sebastian-sellmeier.de"; @@ -22815,7 +22815,7 @@ List of NixOS maintainers. matrix = "@sef:exotic.sh"; github = "sefidel"; githubId = 71049646; - keys = [{fingerprint = "8BDF DFB5 6842 2393 82A0 441B 9238 BC70 9E05 516A";}]; + keys = [ { fingerprint = "8BDF DFB5 6842 2393 82A0 441B 9238 BC70 9E05 516A"; } ]; }; sehqlr = { name = "Sam Hatfield"; @@ -22895,7 +22895,7 @@ List of NixOS maintainers. email = "sephi@fhtagn.top"; github = "sephii"; githubId = 754333; - keys = [{fingerprint = "2A9D 8E76 5EE2 237D 7B6B A2A5 4228 AB9E C061 2ADA";}]; + keys = [ { fingerprint = "2A9D 8E76 5EE2 237D 7B6B A2A5 4228 AB9E C061 2ADA"; } ]; }; sepi = { email = "raffael@mancini.lu"; @@ -22921,7 +22921,7 @@ List of NixOS maintainers. matrix = "@septem9er:fairydust.space"; github = "septem9er"; githubId = 33379902; - keys = [{fingerprint = "C408 07F9 8677 3D98 EFF3 0980 355A 9AFB FD8E AD33";}]; + keys = [ { fingerprint = "C408 07F9 8677 3D98 EFF3 0980 355A 9AFB FD8E AD33"; } ]; }; seqizz = { email = "seqizz@gmail.com"; @@ -22957,7 +22957,7 @@ List of NixOS maintainers. github = "servalcatty"; githubId = 51969817; name = "Serval"; - keys = [{fingerprint = "A317 37B3 693C 921B 480C C629 4A2A AAA3 82F8 294C";}]; + keys = [ { fingerprint = "A317 37B3 693C 921B 480C C629 4A2A AAA3 82F8 294C"; } ]; }; sestrella = { email = "sestrella.me@gmail.com"; @@ -22970,7 +22970,7 @@ List of NixOS maintainers. email = "sable@seyleri.us"; github = "seylerius"; githubId = 1145981; - keys = [{fingerprint = "7246 B6E1 ABB9 9A48 4395 FD11 DC26 B921 A9E9 DBDE";}]; + keys = [ { fingerprint = "7246 B6E1 ABB9 9A48 4395 FD11 DC26 B921 A9E9 DBDE"; } ]; }; sfrijters = { email = "sfrijters@gmail.com"; @@ -23033,8 +23033,8 @@ List of NixOS maintainers. githubId = 23130178; name = "夜坂雅"; keys = [ - {fingerprint = "3237 D49E 8F81 5A45 2133 64EA 4FF3 5790 F405 53A9";} - {fingerprint = "AC59 7AD3 89D1 CC56 18AD 1ED9 B712 3A2B 6B0A E434";} + { fingerprint = "3237 D49E 8F81 5A45 2133 64EA 4FF3 5790 F405 53A9"; } + { fingerprint = "AC59 7AD3 89D1 CC56 18AD 1ED9 B712 3A2B 6B0A E434"; } ]; }; shadows_withal = { @@ -23115,7 +23115,7 @@ List of NixOS maintainers. github = "shayne"; githubId = 79330; name = "Shayne Sweeney"; - keys = [{fingerprint = "AFCB 29A0 F12E F367 9575 DABE 69DA 13E8 6BF4 03B0";}]; + keys = [ { fingerprint = "AFCB 29A0 F12E F367 9575 DABE 69DA 13E8 6BF4 03B0"; } ]; }; shazow = { email = "andrey.petrov@shazow.net"; @@ -23195,7 +23195,7 @@ List of NixOS maintainers. name = "Shiryel"; github = "shiryel"; githubId = 35617139; - keys = [{fingerprint = "AB63 4CD9 3322 BD42 6231 F764 C404 1EA6 B326 33DE";}]; + keys = [ { fingerprint = "AB63 4CD9 3322 BD42 6231 F764 C404 1EA6 B326 33DE"; } ]; }; shivaraj-bh = { email = "sbh69840@gmail.com"; @@ -23256,7 +23256,7 @@ List of NixOS maintainers. email = "shreerammodi10@gmail.com"; github = "shrimpram"; githubId = 67710369; - keys = [{fingerprint = "EA88 EA07 26E9 6CBF 6365 3966 163B 16EE 76ED 24CE";}]; + keys = [ { fingerprint = "EA88 EA07 26E9 6CBF 6365 3966 163B 16EE 76ED 24CE"; } ]; }; shved = { name = "Yury Shvedov"; @@ -23342,7 +23342,7 @@ List of NixOS maintainers. matrix = "@sigmasquadron:matrix.org"; github = "SigmaSquadron"; githubId = 174749595; - keys = [{fingerprint = "E3CD E225 47C6 2DB6 6CCD BC06 CC3A E2EA 0000 0000";}]; + keys = [ { fingerprint = "E3CD E225 47C6 2DB6 6CCD BC06 CC3A E2EA 0000 0000"; } ]; }; sigmike = { email = "mike+nixpkgs@lepton.fr"; @@ -23356,7 +23356,7 @@ List of NixOS maintainers. github = "sikmir"; githubId = 688044; name = "Nikolay Korotkiy"; - keys = [{fingerprint = "ADF4 C13D 0E36 1240 BD01 9B51 D1DE 6D7F 6936 63A5";}]; + keys = [ { fingerprint = "ADF4 C13D 0E36 1240 BD01 9B51 D1DE 6D7F 6936 63A5"; } ]; }; silky = { name = "Noon van der Silk"; @@ -23370,7 +23370,7 @@ List of NixOS maintainers. matrix = "@sils:vhack.eu"; github = "s1ls"; githubId = 91412114; - keys = [{fingerprint = "C1DA A551 B422 7A6F 3FD9 6B3A 467B 7D12 9EA7 3AC9";}]; + keys = [ { fingerprint = "C1DA A551 B422 7A6F 3FD9 6B3A 467B 7D12 9EA7 3AC9"; } ]; }; silvanshade = { github = "silvanshade"; @@ -23471,7 +23471,7 @@ List of NixOS maintainers. github = "siriobalmelli"; githubId = 23038812; name = "Sirio Balmelli"; - keys = [{fingerprint = "B234 EFD4 2B42 FE81 EE4D 7627 F72C 4A88 7F9A 24CA";}]; + keys = [ { fingerprint = "B234 EFD4 2B42 FE81 EE4D 7627 F72C 4A88 7F9A 24CA"; } ]; }; sironheart = { email = "git@beisenherz.dev"; @@ -23538,7 +23538,7 @@ List of NixOS maintainers. email = "steven.keuchel@gmail.com"; github = "skeuchel"; githubId = 617130; - keys = [{fingerprint = "C4F7 46C7 B560 38D8 210F 0288 5877 DEE9 7428 557F";}]; + keys = [ { fingerprint = "C4F7 46C7 B560 38D8 210F 0288 5877 DEE9 7428 557F"; } ]; }; skovati = { github = "skovati"; @@ -23603,21 +23603,21 @@ List of NixOS maintainers. github = "slotThe"; matrix = "@slot-:matrix.org"; githubId = 50166980; - keys = [{fingerprint = "4896 FB6C 9528 46C3 414C 2475 C927 DE8C 7DFD 57B8";}]; + keys = [ { fingerprint = "4896 FB6C 9528 46C3 414C 2475 C927 DE8C 7DFD 57B8"; } ]; }; slwst = { email = "email@slw.st"; github = "slwst"; githubId = 11047377; name = "slwst"; - keys = [{fingerprint = "6CEB 4A2F E6DC C345 1B2B 4733 AD52 C5FB 3EFE CC7A";}]; + keys = [ { fingerprint = "6CEB 4A2F E6DC C345 1B2B 4733 AD52 C5FB 3EFE CC7A"; } ]; }; smakarov = { email = "setser200018@gmail.com"; github = "SeTSeR"; githubId = 12733495; name = "Sergey Makarov"; - keys = [{fingerprint = "6F8A 18AE 4101 103F 3C54 24B9 6AA2 3A11 93B7 064B";}]; + keys = [ { fingerprint = "6F8A 18AE 4101 103F 3C54 24B9 6AA2 3A11 93B7 064B"; } ]; }; smancill = { email = "smancill@smancill.dev"; @@ -23630,7 +23630,7 @@ List of NixOS maintainers. github = "smaret"; githubId = 95471; name = "Sébastien Maret"; - keys = [{fingerprint = "4242 834C D401 86EF 8281 4093 86E3 0E5A 0F5F C59C";}]; + keys = [ { fingerprint = "4242 834C D401 86EF 8281 4093 86E3 0E5A 0F5F C59C"; } ]; }; smasher164 = { email = "aindurti@gmail.com"; @@ -23662,7 +23662,7 @@ List of NixOS maintainers. email = "mason.bourgeois@gmail.com"; github = "Smona"; githubId = 7091399; - keys = [{fingerprint = "897E 6BE3 0345 B43D CADD 05B7 290F CF08 1AED B3EC";}]; + keys = [ { fingerprint = "897E 6BE3 0345 B43D CADD 05B7 290F CF08 1AED B3EC"; } ]; }; smonson = { name = "Samuel Monson"; @@ -23765,7 +23765,7 @@ List of NixOS maintainers. name = "Soham S Gumaste"; github = "SohamG"; githubId = 7116239; - keys = [{fingerprint = "E067 520F 5EF2 C175 3F60 50C0 BA46 725F 6A26 7442";}]; + keys = [ { fingerprint = "E067 520F 5EF2 C175 3F60 50C0 BA46 725F 6A26 7442"; } ]; }; solson = { email = "scott@solson.me"; @@ -23836,7 +23836,7 @@ List of NixOS maintainers. matrix = "@soywod:matrix.org"; github = "soywod"; githubId = 10437171; - keys = [{fingerprint = "75F0 AB7C FE01 D077 AEE6 CAFD 353E 4A18 EE0F AB72";}]; + keys = [ { fingerprint = "75F0 AB7C FE01 D077 AEE6 CAFD 353E 4A18 EE0F AB72"; } ]; }; spacedentist = { email = "sp@cedenti.st"; @@ -23898,7 +23898,7 @@ List of NixOS maintainers. email = "bintangadiputrapratama@gmail.com"; github = "spitulax"; githubId = 96517350; - keys = [{fingerprint = "652F FAAD 5CB8 AF1D 3F96 9521 929E D6C4 0414 D3F5";}]; + keys = [ { fingerprint = "652F FAAD 5CB8 AF1D 3F96 9521 929E D6C4 0414 D3F5"; } ]; }; spk = { email = "laurent@spkdev.net"; @@ -23916,7 +23916,7 @@ List of NixOS maintainers. github = "sportshead"; githubId = 32637656; name = "sportshead"; - keys = [{fingerprint = "A6B6 D031 782E BDF7 631A 8E7E A874 DB2C BFD3 CFD0";}]; + keys = [ { fingerprint = "A6B6 D031 782E BDF7 631A 8E7E A874 DB2C BFD3 CFD0"; } ]; }; sprock = { email = "rmason@mun.ca"; @@ -23947,7 +23947,7 @@ List of NixOS maintainers. name = "squat"; github = "squat"; githubId = 20484159; - keys = [{fingerprint = "F246 425A 7650 6F37 0552 BA8D DEA9 C405 09D9 65F5";}]; + keys = [ { fingerprint = "F246 425A 7650 6F37 0552 BA8D DEA9 C405 09D9 65F5"; } ]; }; srghma = { email = "srghma@gmail.com"; @@ -23992,7 +23992,7 @@ List of NixOS maintainers. matrix = "@ruby:isincredibly.gay"; github = "Sorixelle"; githubId = 38685302; - keys = [{fingerprint = "2D76 76C7 A28E 16FC 75C7 268D 1B55 6ED8 4B0E 303A";}]; + keys = [ { fingerprint = "2D76 76C7 A28E 16FC 75C7 268D 1B55 6ED8 4B0E 303A"; } ]; }; Srylax = { name = "Srylax"; @@ -24041,7 +24041,7 @@ List of NixOS maintainers. email = "starcraft66@gmail.com"; github = "starcraft66"; githubId = 1858154; - keys = [{fingerprint = "8597 4506 EC69 5392 0443 0805 9D98 CDAC FF04 FD78";}]; + keys = [ { fingerprint = "8597 4506 EC69 5392 0443 0805 9D98 CDAC FF04 FD78"; } ]; }; stargate01 = { email = "christoph.honal@web.de"; @@ -24121,7 +24121,7 @@ List of NixOS maintainers. matrix = "@steinybot:matrix.org"; github = "steinybot"; githubId = 4659562; - keys = [{fingerprint = "2709 1DEC CC42 4635 4299 569C 21DE 1CAE 5976 2A0F";}]; + keys = [ { fingerprint = "2709 1DEC CC42 4635 4299 569C 21DE 1CAE 5976 2A0F"; } ]; }; stelcodes = { email = "stel@stel.codes"; @@ -24134,7 +24134,7 @@ List of NixOS maintainers. email = "homicide@disroot.org"; github = "stellessia"; githubId = 81514356; - keys = [{fingerprint = "38E8 7F79 AE86 CA98 F8BC 45F8 1060 00A0 5E5B DB90";}]; + keys = [ { fingerprint = "38E8 7F79 AE86 CA98 F8BC 45F8 1060 00A0 5E5B DB90"; } ]; }; stepbrobd = { name = "Yifei Sun"; @@ -24155,7 +24155,7 @@ List of NixOS maintainers. email = "stephen.huan@cgdct.moe"; github = "stephen-huan"; githubId = 20411956; - keys = [{fingerprint = "EA6E 2794 8C7D BF5D 0DF0 85A1 0FBC 2E3B A99D D60E";}]; + keys = [ { fingerprint = "EA6E 2794 8C7D BF5D 0DF0 85A1 0FBC 2E3B A99D D60E"; } ]; }; stephenmw = { email = "stephen@q5comm.com"; @@ -24185,7 +24185,7 @@ List of NixOS maintainers. email = "steven@steshaw.org"; github = "steshaw"; githubId = 45735; - keys = [{fingerprint = "0AFE 77F7 474D 1596 EE55 7A29 1D9A 17DF D23D CB91";}]; + keys = [ { fingerprint = "0AFE 77F7 474D 1596 EE55 7A29 1D9A 17DF D23D CB91"; } ]; }; stesie = { email = "stesie@brokenpipe.de"; @@ -24222,7 +24222,7 @@ List of NixOS maintainers. github = "stevestreza"; githubId = 28552; name = "Steve Streza"; - keys = [{fingerprint = "DFED 4E42 34E7 348C 57D4 6568 C4DC 30F8 5ABC 6FA1";}]; + keys = [ { fingerprint = "DFED 4E42 34E7 348C 57D4 6568 C4DC 30F8 5ABC 6FA1"; } ]; }; stianlagstad = { email = "stianlagstad@gmail.com"; @@ -24241,7 +24241,7 @@ List of NixOS maintainers. github = "StillerHarpo"; githubId = 25526706; name = "Florian Engel"; - keys = [{fingerprint = "4E2D9B26940E0DABF376B7AF76762421D45837DE";}]; + keys = [ { fingerprint = "4E2D9B26940E0DABF376B7AF76762421D45837DE"; } ]; matrix = "@qe7ftcyrpg:matrix.org"; }; stites = { @@ -24304,7 +24304,7 @@ List of NixOS maintainers. matrix = "@stv0ge:matrix.org"; github = "stv0g"; githubId = 285829; - keys = [{fingerprint = "09BE 3BAE 8D55 D4CD 8579 285A 9675 EAC3 4897 E6E2";}]; + keys = [ { fingerprint = "09BE 3BAE 8D55 D4CD 8579 285A 9675 EAC3 4897 E6E2"; } ]; }; SubhrajyotiSen = { email = "subhrajyoti12@gmail.com"; @@ -24316,7 +24316,7 @@ List of NixOS maintainers. github = "sudoforge"; githubId = 3893293; name = "sudoforge"; - keys = [{fingerprint = "7EBCE51F278D30AE1C34036341BF61468C327D5A";}]; + keys = [ { fingerprint = "7EBCE51F278D30AE1C34036341BF61468C327D5A"; } ]; }; sudosubin = { email = "sudosubin@gmail.com"; @@ -24565,7 +24565,7 @@ List of NixOS maintainers. github = "t4ccer"; githubId = 64430288; name = "Tomasz Maciosowski"; - keys = [{fingerprint = "6866 981C 4992 4D64 D154 E1AC 19E5 A2D8 B1E4 3F19";}]; + keys = [ { fingerprint = "6866 981C 4992 4D64 D154 E1AC 19E5 A2D8 B1E4 3F19"; } ]; }; t4sm5n = { email = "t4sm5n@gmail.com"; @@ -24614,7 +24614,7 @@ List of NixOS maintainers. github = "taikx4"; githubId = 94917129; name = "taikx4"; - keys = [{fingerprint = "6B02 8103 C4E5 F68C D77C 9E54 CCD5 2C7B 37BB 837E";}]; + keys = [ { fingerprint = "6B02 8103 C4E5 F68C D77C 9E54 CCD5 2C7B 37BB 837E"; } ]; }; tailhook = { email = "paul@colomiets.name"; @@ -24761,7 +24761,7 @@ List of NixOS maintainers. github = "tbaldwin-dev"; githubId = 220447215; name = "Trent Baldwin"; - keys = [{fingerprint = "930C 3A61 F911 1296 7DA5 56D1 665A 9E2A FCDD 68AA";}]; + keys = [ { fingerprint = "930C 3A61 F911 1296 7DA5 56D1 665A 9E2A FCDD 68AA"; } ]; }; tbenst = { email = "nix@tylerbenster.com"; @@ -24808,7 +24808,7 @@ List of NixOS maintainers. email = "contact@tchekda.fr"; github = "Tchekda"; githubId = 23559888; - keys = [{fingerprint = "44CE A8DD 3B31 49CD 6246 9D8F D0A0 07ED A4EA DA0F";}]; + keys = [ { fingerprint = "44CE A8DD 3B31 49CD 6246 9D8F D0A0 07ED A4EA DA0F"; } ]; name = "David Tchekachev"; }; tcheronneau = { @@ -24887,7 +24887,7 @@ List of NixOS maintainers. matrix = "@tejing:matrix.org"; github = "tejing1"; githubId = 5663576; - keys = [{fingerprint = "6F0F D43B 80E5 583E 60FC 51DC 4936 D067 EB12 AB32";}]; + keys = [ { fingerprint = "6F0F D43B 80E5 583E 60FC 51DC 4936 D067 EB12 AB32"; } ]; }; telotortium = { email = "rirelan@gmail.com"; @@ -24949,14 +24949,14 @@ List of NixOS maintainers. email = "terry@terryg.org"; github = "TerryGarcia"; githubId = 159372832; - keys = [{fingerprint = "6F54 C08C 37C8 EC78 15FA 0D01 A721 8CBA 2D80 15C3";}]; + keys = [ { fingerprint = "6F54 C08C 37C8 EC78 15FA 0D01 A721 8CBA 2D80 15C3"; } ]; }; Tert0 = { name = "Tert0"; github = "Tert0"; githubId = 62036464; email = "tert0byte@gmail.com"; - keys = [{fingerprint = "F899 D3B5 00BF 98AE 9097 F616 7069 D89F 9E5C 97ED";}]; + keys = [ { fingerprint = "F899 D3B5 00BF 98AE 9097 F616 7069 D89F 9E5C 97ED"; } ]; }; tesq0 = { email = "mikolaj.galkowski@gmail.com"; @@ -24980,7 +24980,7 @@ List of NixOS maintainers. email = "anton@tetov.se"; github = "tetov"; githubId = 14882117; - keys = [{fingerprint = "2B4D 0035 AFF0 F7DA CE5B 29D7 337D DB57 4A88 34DB";}]; + keys = [ { fingerprint = "2B4D 0035 AFF0 F7DA CE5B 29D7 337D DB57 4A88 34DB"; } ]; name = "Anton Tetov"; }; teutat3s = { @@ -24989,7 +24989,7 @@ List of NixOS maintainers. github = "teutat3s"; githubId = 10206665; name = "teutat3s"; - keys = [{fingerprint = "81A1 1C61 F413 8C84 9139 A4FA 18DA E600 A6BB E705";}]; + keys = [ { fingerprint = "81A1 1C61 F413 8C84 9139 A4FA 18DA E600 A6BB E705"; } ]; }; tex = { email = "milan.svoboda@centrum.cz"; @@ -25075,7 +25075,7 @@ List of NixOS maintainers. matrix = "@thbltp:matrix.org"; github = "thblt"; githubId = 2453136; - keys = [{fingerprint = "D2A2 F0A1 E7A8 5E6F B711 DEE5 63A4 4817 A52E AB7B";}]; + keys = [ { fingerprint = "D2A2 F0A1 E7A8 5E6F B711 DEE5 63A4 4817 A52E AB7B"; } ]; }; the-argus = { email = "i.mcfarlane2002@gmail.com"; @@ -25089,7 +25089,7 @@ List of NixOS maintainers. email = "dev@theaninova.de"; github = "Theaninova"; githubId = 19289296; - keys = [{fingerprint = "6C9E EFC5 1AE0 0131 78DE B9C8 68FF FB1E C187 88CA";}]; + keys = [ { fingerprint = "6C9E EFC5 1AE0 0131 78DE B9C8 68FF FB1E C187 88CA"; } ]; }; TheBrainScrambler = { email = "esthromeris@riseup.net"; @@ -25103,14 +25103,14 @@ List of NixOS maintainers. matrix = "@capypara:matrix.org"; github = "theCapypara"; githubId = 3512122; - keys = [{fingerprint = "5F29 132D EFA8 5DA0 B598 5BF2 5941 754C 1CDE 33BB";}]; + keys = [ { fingerprint = "5F29 132D EFA8 5DA0 B598 5BF2 5941 754C 1CDE 33BB"; } ]; }; TheColorman = { name = "colorman"; email = "nixpkgs@colorman.me"; github = "TheColorman"; githubId = 18369995; - keys = [{fingerprint = "3D8C A43C FBA2 5D28 0196 19F0 AB11 0475 B417 291D";}]; + keys = [ { fingerprint = "3D8C A43C FBA2 5D28 0196 19F0 AB11 0475 B417 291D"; } ]; }; thedavidmeister = { email = "thedavidmeister@gmail.com"; @@ -25148,7 +25148,7 @@ List of NixOS maintainers. email = "anisimovkosta19@gmail.com"; github = "TheKostins"; githubId = 39405421; - keys = [{fingerprint = "B216 7B33 E248 097F D82A 991D C94D 589A 4D0D CDD2";}]; + keys = [ { fingerprint = "B216 7B33 E248 097F D82A 991D C94D 589A 4D0D CDD2"; } ]; }; thelegy = { email = "mail+nixos@0jb.de"; @@ -25185,7 +25185,7 @@ List of NixOS maintainers. email = "theo1.bori@epitech.eu"; github = "theobori"; githubId = 71843723; - keys = [{fingerprint = "EEFB CC3A C529 CFD1 943D A75C BDD5 7BE9 9D55 5965";}]; + keys = [ { fingerprint = "EEFB CC3A C529 CFD1 943D A75C BDD5 7BE9 9D55 5965"; } ]; }; theonlymrcat = { name = "Max Guppy"; @@ -25204,7 +25204,7 @@ List of NixOS maintainers. email = "tpzker@thepuzzlemaker.info"; github = "ThePuzzlemaker"; githubId = 12666617; - keys = [{fingerprint = "7095 C20A 9224 3DB6 5177 07B0 968C D9D7 1C9F BB6C";}]; + keys = [ { fingerprint = "7095 C20A 9224 3DB6 5177 07B0 968C D9D7 1C9F BB6C"; } ]; }; therealansh = { email = "tyagiansh23@gmail.com"; @@ -25223,7 +25223,7 @@ List of NixOS maintainers. github = "rouven0"; githubId = 72568063; name = "Rouven Seifert"; - keys = [{fingerprint = "1169 87A8 DD3F 78FF 8601 BF4D B95E 8FE6 B11C 4D09";}]; + keys = [ { fingerprint = "1169 87A8 DD3F 78FF 8601 BF4D B95E 8FE6 B11C 4D09"; } ]; }; theredstonedev = { email = "theredstonedev@devellight.space"; @@ -25248,7 +25248,7 @@ List of NixOS maintainers. email = "me@thesola.io"; github = "Thesola10"; githubId = 7287268; - keys = [{fingerprint = "1D05 13A6 1AC4 0D8D C6D6 5F2C 8924 5619 BEBB 95BA";}]; + keys = [ { fingerprint = "1D05 13A6 1AC4 0D8D C6D6 5F2C 8924 5619 BEBB 95BA"; } ]; name = "Karim Vergnes"; }; thetallestjj = { @@ -25275,7 +25275,7 @@ List of NixOS maintainers. githubId = 875885; name = "Konstantin Bogdanov"; keys = [ - {fingerprint = "3221 7A73 EB95 0E9E E550 36A3 DB39 9448 D9FE 52F1";} + { fingerprint = "3221 7A73 EB95 0E9E E550 36A3 DB39 9448 D9FE 52F1"; } ]; }; theverygaming = { @@ -25422,7 +25422,7 @@ List of NixOS maintainers. github = "Thunderbottom"; githubId = 11243138; name = "Chinmay D. Pai"; - keys = [{fingerprint = "7F3E EEAA EE66 93CC 8782 042A 7550 7BE2 56F4 0CED";}]; + keys = [ { fingerprint = "7F3E EEAA EE66 93CC 8782 042A 7550 7BE2 56F4 0CED"; } ]; }; thyol = { name = "thyol"; @@ -25553,7 +25553,7 @@ List of NixOS maintainers. github = "titaniumtown"; githubId = 11786225; matrix = "@titaniumtown:envs.net"; - keys = [{fingerprint = "D15E 4754 FE1A EDA1 5A6D 4702 9AB2 8AC1 0ECE 533D";}]; + keys = [ { fingerprint = "D15E 4754 FE1A EDA1 5A6D 4702 9AB2 8AC1 0ECE 533D"; } ]; }; tjkeller = { email = "tjk@tjkeller.xyz"; @@ -25567,14 +25567,14 @@ List of NixOS maintainers. name = "Theodore Ni"; github = "tjni"; githubId = 3806110; - keys = [{fingerprint = "4384 B8E1 299F C028 1641 7B8F EC30 EFBE FA7E 84A4";}]; + keys = [ { fingerprint = "4384 B8E1 299F C028 1641 7B8F EC30 EFBE FA7E 84A4"; } ]; }; tkerber = { email = "tk@drwx.org"; github = "tkerber"; githubId = 5722198; name = "Thomas Kerber"; - keys = [{fingerprint = "556A 403F B0A2 D423 F656 3424 8489 B911 F9ED 617B";}]; + keys = [ { fingerprint = "556A 403F B0A2 D423 F656 3424 8489 B911 F9ED 617B"; } ]; }; tljuniper = { email = "tljuniper1@gmail.com"; @@ -25643,7 +25643,7 @@ List of NixOS maintainers. github = "toastal"; githubId = 561087; name = "toastal"; - keys = [{fingerprint = "7944 74B7 D236 DAB9 C9EF E7F9 5CCE 6F14 66D4 7C9E";}]; + keys = [ { fingerprint = "7944 74B7 D236 DAB9 C9EF E7F9 5CCE 6F14 66D4 7C9E"; } ]; }; toasteruwu = { email = "Aki@ToasterUwU.com"; @@ -25692,7 +25692,7 @@ List of NixOS maintainers. githubId = 62384384; matrix = "@tomasajt:matrix.org"; name = "TomaSajt"; - keys = [{fingerprint = "8CA9 8016 F44D B717 5B44 6032 F011 163C 0501 22A1";}]; + keys = [ { fingerprint = "8CA9 8016 F44D B717 5B44 6032 F011 163C 0501 22A1"; } ]; }; tomaskala = { email = "public+nixpkgs@tomaskala.com"; @@ -25747,7 +25747,7 @@ List of NixOS maintainers. github = "tomodachi94"; githubId = 68489118; name = "Tomodachi94"; - keys = [{fingerprint = "B208 D6E5 B8ED F47D 5687 627B 2E27 5F21 C4D5 54A3";}]; + keys = [ { fingerprint = "B208 D6E5 B8ED F47D 5687 627B 2E27 5F21 C4D5 54A3"; } ]; }; tomsiewert = { email = "tom@siewert.io"; @@ -26044,7 +26044,7 @@ List of NixOS maintainers. github = "tuxinaut"; githubId = 722482; name = "Denny Schäfer"; - keys = [{fingerprint = "C752 0E49 4D92 1740 D263 C467 B057 455D 1E56 7270";}]; + keys = [ { fingerprint = "C752 0E49 4D92 1740 D263 C467 B057 455D 1E56 7270"; } ]; }; tuxy = { email = "lastpass7565@gmail.com"; @@ -26104,7 +26104,7 @@ List of NixOS maintainers. email = "twhitehead@gmail.com"; github = "twhitehead"; githubId = 787843; - keys = [{fingerprint = "E631 8869 586F 99B4 F6E6 D785 5942 58F0 389D 2802";}]; + keys = [ { fingerprint = "E631 8869 586F 99B4 F6E6 D785 5942 58F0 389D 2802"; } ]; }; twitchy0 = { email = "code@nitinpassa.com"; @@ -26117,7 +26117,7 @@ List of NixOS maintainers. email = "tom@bibbu.net"; github = "twz123"; githubId = 1215104; - keys = [{fingerprint = "B1FD 4E2A 84B2 2379 F4BF 2EF5 FE33 A228 2371 E831";}]; + keys = [ { fingerprint = "B1FD 4E2A 84B2 2379 F4BF 2EF5 FE33 A228 2371 E831"; } ]; }; tyberius-prime = { name = "Tyberius Prime"; @@ -26134,7 +26134,7 @@ List of NixOS maintainers. name = "Tygo van den Hurk"; github = "Tygo-van-den-Hurk"; githubId = 91738110; - keys = [{fingerprint = "1AAE 628A 2D49 0597 17AE A7F8 7CA2 CBB2 7505 8A44";}]; + keys = [ { fingerprint = "1AAE 628A 2D49 0597 17AE A7F8 7CA2 CBB2 7505 8A44"; } ]; }; tylerjl = { email = "tyler+nixpkgs@langlois.to"; @@ -26209,7 +26209,7 @@ List of NixOS maintainers. github = "ulinja"; githubId = 56582668; name = "Julian Lobbes"; - keys = [{fingerprint = "24D9 B20A 65C2 DFB9 8E6A 754C 8EC4 6A5E 6743 3524";}]; + keys = [ { fingerprint = "24D9 B20A 65C2 DFB9 8E6A 754C 8EC4 6A5E 6743 3524"; } ]; }; ulrikstrid = { email = "ulrik.strid@outlook.com"; @@ -26241,14 +26241,14 @@ List of NixOS maintainers. matrix = "@unhidden0174:matrix.org"; github = "unclamped"; githubId = 104658278; - keys = [{fingerprint = "57A2 CC43 3068 CB62 89C1 F1DA 9137 BB2E 77AD DE7E";}]; + keys = [ { fingerprint = "57A2 CC43 3068 CB62 89C1 F1DA 9137 BB2E 77AD DE7E"; } ]; }; unclechu = { name = "Viacheslav Lotsmanov"; email = "lotsmanov89@gmail.com"; github = "unclechu"; githubId = 799353; - keys = [{fingerprint = "EE59 5E29 BB5B F2B3 5ED2 3F1C D276 FF74 6700 7335";}]; + keys = [ { fingerprint = "EE59 5E29 BB5B F2B3 5ED2 3F1C D276 FF74 6700 7335"; } ]; }; undefined-landmark = { name = "bas"; @@ -26261,7 +26261,7 @@ List of NixOS maintainers. email = "i@undefined.moe"; github = "undefined-moe"; githubId = 29992205; - keys = [{fingerprint = "6684 4E7D D213 C75D 8828 6215 C714 A58B 6C1E 0F52";}]; + keys = [ { fingerprint = "6684 4E7D D213 C75D 8828 6215 C714 A58B 6C1E 0F52"; } ]; }; ungeskriptet = { name = "David Wronek"; @@ -26274,7 +26274,7 @@ List of NixOS maintainers. github = "unhammer"; githubId = 56868; name = "Kevin Brubeck Unhammer"; - keys = [{fingerprint = "50D4 8796 0B86 3F05 4B6A 12F9 7426 06DE 766A C60C";}]; + keys = [ { fingerprint = "50D4 8796 0B86 3F05 4B6A 12F9 7426 06DE 766A C60C"; } ]; }; uniquepointer = { email = "uniquepointer@mailbox.org"; @@ -26312,7 +26312,7 @@ List of NixOS maintainers. matrix = "@urandom0:matrix.org"; github = "urandom2"; githubId = 2526260; - keys = [{fingerprint = "04A3 A2C6 0042 784A AEA7 D051 0447 A663 F7F3 E236";}]; + keys = [ { fingerprint = "04A3 A2C6 0042 784A AEA7 D051 0447 A663 F7F3 E236"; } ]; name = "Colin Arnott"; }; urbas = { @@ -26344,7 +26344,7 @@ List of NixOS maintainers. email = "code@usertam.dev"; github = "usertam"; githubId = 22500027; - keys = [{fingerprint = "EC4E E490 3C82 3698 2CAB D206 2D87 60B0 229E 2560";}]; + keys = [ { fingerprint = "EC4E E490 3C82 3698 2CAB D206 2D87 60B0 229E 2560"; } ]; }; uskudnik = { email = "urban.skudnik@gmail.com"; @@ -26466,7 +26466,7 @@ List of NixOS maintainers. github = "VergeDX"; githubId = 25173827; name = "Vanilla"; - keys = [{fingerprint = "2649 340C C909 F821 D251 6714 3750 028E D04F A42E";}]; + keys = [ { fingerprint = "2649 340C C909 F821 D251 6714 3750 028E D04F A42E"; } ]; }; vanschelven = { email = "klaas@vanschelven.com"; @@ -26529,7 +26529,7 @@ List of NixOS maintainers. matrix = "@vcunat:matrix.org"; github = "vcunat"; githubId = 1785925; - keys = [{fingerprint = "B600 6460 B60A 80E7 8206 2449 E747 DF1F 9575 A3AA";}]; + keys = [ { fingerprint = "B600 6460 B60A 80E7 8206 2449 E747 DF1F 9575 A3AA"; } ]; }; vdemeester = { email = "vincent@sbr.pm"; @@ -26554,7 +26554,7 @@ List of NixOS maintainers. email = "mail@vincent-haupert.de"; github = "veehaitch"; githubId = 15069839; - keys = [{fingerprint = "4D23 ECDF 880D CADF 5ECA 4458 874B D6F9 16FA A742";}]; + keys = [ { fingerprint = "4D23 ECDF 880D CADF 5ECA 4458 874B D6F9 16FA A742"; } ]; }; vel = { email = "llathasa@outlook.com"; @@ -26597,7 +26597,7 @@ List of NixOS maintainers. email = "me@skye.vg"; github = "vgskye"; githubId = 116078858; - keys = [{fingerprint = "CDEA 7E04 69E3 0885 A754 4B05 0104 BC05 F41B 77B8";}]; + keys = [ { fingerprint = "CDEA 7E04 69E3 0885 A754 4B05 0104 BC05 F41B 77B8"; } ]; }; victormeriqui = { name = "Victor Meriqui"; @@ -26634,7 +26634,7 @@ List of NixOS maintainers. github = "vikanezrimaya"; githubId = 7953163; name = "Vika Shleina"; - keys = [{fingerprint = "5814 50EB 6E17 E715 7C63 E7F1 9879 8C3C 4D68 8D6D";}]; + keys = [ { fingerprint = "5814 50EB 6E17 E715 7C63 E7F1 9879 8C3C 4D68 8D6D"; } ]; }; viktornordling = { email = "antique_paler_0i@icloud.com"; @@ -26659,7 +26659,7 @@ List of NixOS maintainers. github = "vincentbernat"; githubId = 631446; name = "Vincent Bernat"; - keys = [{fingerprint = "AEF2 3487 66F3 71C6 89A7 3600 95A4 2FE8 3535 25F9";}]; + keys = [ { fingerprint = "AEF2 3487 66F3 71C6 89A7 3600 95A4 2FE8 3535 25F9"; } ]; }; vinetos = { name = "vinetos"; @@ -26726,7 +26726,7 @@ List of NixOS maintainers. github = "ViZiD"; githubId = 7444430; name = "Radik Islamov"; - keys = [{fingerprint = "5779 01B8 C620 E064 4212 C6FC F396 46E8 0C71 08E7";}]; + keys = [ { fingerprint = "5779 01B8 C620 E064 4212 C6FC F396 46E8 0C71 08E7"; } ]; }; vji = { email = "mail@viktor.im"; @@ -26775,7 +26775,7 @@ List of NixOS maintainers. github = "vncsb"; githubId = 19562240; name = "Vinicius Bernardino"; - keys = [{fingerprint = "F0D3 920C 722A 541F 0CCD 66E3 A7BA BA05 3D78 E7CA";}]; + keys = [ { fingerprint = "F0D3 920C 722A 541F 0CCD 66E3 A7BA BA05 3D78 E7CA"; } ]; }; vnpower = { email = "vnpower@loang.net"; @@ -26788,7 +26788,7 @@ List of NixOS maintainers. github = "vog"; githubId = 412749; name = "Volker Diels-Grabsch"; - keys = [{fingerprint = "A7E6 9C4F 69DC 5D6C FC84 EE34 A29F BD51 5F89 90AF";}]; + keys = [ { fingerprint = "A7E6 9C4F 69DC 5D6C FC84 EE34 A29F BD51 5F89 90AF"; } ]; }; voidless = { email = "julius.schmitt@yahoo.de"; @@ -26837,7 +26837,7 @@ List of NixOS maintainers. name = "Dmitry Voronin"; github = "voronind-com"; githubId = 22127600; - keys = [{fingerprint = "3241 FDAD 82A7 E22D 4279 F405 913F 3267 9278 2E1C";}]; + keys = [ { fingerprint = "3241 FDAD 82A7 E22D 4279 F405 913F 3267 9278 2E1C"; } ]; }; votava = { email = "votava@gmail.com"; @@ -26940,7 +26940,7 @@ List of NixOS maintainers. email = "wackbyte@pm.me"; github = "wackbyte"; githubId = 29505620; - keys = [{fingerprint = "E595 7FE4 FEF6 714B 1AD3 1483 937F 2AE5 CCEF BF59";}]; + keys = [ { fingerprint = "E595 7FE4 FEF6 714B 1AD3 1483 937F 2AE5 CCEF BF59"; } ]; }; waelwindows = { email = "waelwindows9922@gmail.com"; @@ -26953,7 +26953,7 @@ List of NixOS maintainers. email = "williamvphan@yahoo.fr"; github = "wahtique"; githubId = 55251330; - keys = [{fingerprint = "9262 E3A7 D129 C4DD A7C1 26CE 370D D9BE 9121 F0B3";}]; + keys = [ { fingerprint = "9262 E3A7 D129 C4DD A7C1 26CE 370D D9BE 9121 F0B3"; } ]; }; waiting-for-dev = { email = "marc@lamarciana.com"; @@ -26966,7 +26966,7 @@ List of NixOS maintainers. email = "sheng@a64.work"; github = "wakira"; githubId = 2338339; - keys = [{fingerprint = "47F7 009E 3AE3 1DA7 988E 12E1 8C9B 0A8F C0C0 D862";}]; + keys = [ { fingerprint = "47F7 009E 3AE3 1DA7 988E 12E1 8C9B 0A8F C0C0 D862"; } ]; }; wamirez = { email = "wamirez@protonmail.com"; @@ -27029,7 +27029,7 @@ List of NixOS maintainers. matrix = "@weathercold:matrix.org"; github = "Weathercold"; githubId = 49368953; - keys = [{fingerprint = "D20F C904 A145 8B28 53D8 FBA0 0422 0096 01E4 87FC";}]; + keys = [ { fingerprint = "D20F C904 A145 8B28 53D8 FBA0 0422 0096 01E4 87FC"; } ]; }; WeetHet = { name = "WeetHet"; @@ -27060,7 +27060,7 @@ List of NixOS maintainers. github = "welteki"; githubId = 16267532; name = "Han Verstraete"; - keys = [{fingerprint = "2145 955E 3F5E 0C95 3458 41B5 11F7 BAEA 8567 43FF";}]; + keys = [ { fingerprint = "2145 955E 3F5E 0C95 3458 41B5 11F7 BAEA 8567 43FF"; } ]; }; wenjinnn = { name = "wenjin"; @@ -27097,7 +27097,7 @@ List of NixOS maintainers. email = "wgn@wesnel.dev"; github = "wesnel"; githubId = 43357387; - keys = [{fingerprint = "F844 80B2 0CA9 D6CC C7F5 2479 A776 D2AD 099E 8BC0";}]; + keys = [ { fingerprint = "F844 80B2 0CA9 D6CC C7F5 2479 A776 D2AD 099E 8BC0"; } ]; }; wexder = { email = "wexder19@gmail.com"; @@ -27134,7 +27134,7 @@ List of NixOS maintainers. github = "WhiteBlackGoose"; githubId = 31178401; name = "WhiteBlackGoose"; - keys = [{fingerprint = "640B EDDE 9734 310A BFA3 B257 52ED AE6A 3995 AFAB";}]; + keys = [ { fingerprint = "640B EDDE 9734 310A BFA3 B257 52ED AE6A 3995 AFAB"; } ]; }; whiteley = { email = "mattwhiteley@gmail.com"; @@ -27183,7 +27183,7 @@ List of NixOS maintainers. email = "sebastian@wild-siena.com"; github = "wildsebastian"; githubId = 1215623; - keys = [{fingerprint = "DA03 D6C6 3F58 E796 AD26 E99B 366A 2940 479A 06FC";}]; + keys = [ { fingerprint = "DA03 D6C6 3F58 E796 AD26 E99B 366A 2940 479A 06FC"; } ]; }; wilhelmines = { email = "mail@aesz.org"; @@ -27221,7 +27221,7 @@ List of NixOS maintainers. github = "spaghetus"; githubId = 28763739; name = "Willow Carlson-Huber"; - keys = [{fingerprint = "FE21E0981CDFD50ADD086423C21A693BA4693A60";}]; + keys = [ { fingerprint = "FE21E0981CDFD50ADD086423C21A693BA4693A60"; } ]; }; willswats = { email = "williamstuwatson@gmail.com"; @@ -27269,7 +27269,7 @@ List of NixOS maintainers. email = "jade@witchof.space"; github = "witchof0x20"; githubId = 36118348; - keys = [{fingerprint = "69C9 876B 5797 1B2E 11C5 7C39 80A1 F76F C9F9 54AE";}]; + keys = [ { fingerprint = "69C9 876B 5797 1B2E 11C5 7C39 80A1 F76F C9F9 54AE"; } ]; }; wizardlink = { name = "wizardlink"; @@ -27341,7 +27341,7 @@ List of NixOS maintainers. email = "walther@technowledgy.de"; github = "wolfgangwalther"; githubId = 9132420; - keys = [{fingerprint = "F943 A0BC 720C 5BEF 73CD E02D B398 93FA 5F65 CAE1";}]; + keys = [ { fingerprint = "F943 A0BC 720C 5BEF 73CD E02D B398 93FA 5F65 CAE1"; } ]; }; womeier = { name = "Wolfgang Meier"; @@ -27360,7 +27360,7 @@ List of NixOS maintainers. github = "workflow"; githubId = 1276854; name = "Florian Peter"; - keys = [{fingerprint = "C349 3C74 E232 A1EE E005 1678 2457 5DB9 3F6C EC16";}]; + keys = [ { fingerprint = "C349 3C74 E232 A1EE E005 1678 2457 5DB9 3F6C EC16"; } ]; }; worldofpeace = { email = "worldofpeace@protonmail.ch"; @@ -27404,9 +27404,9 @@ List of NixOS maintainers. github = "wrbbz"; githubId = 14261606; keys = [ - {fingerprint = "3724 B33B 0B85 F067 814C DA30 FC77 0786 0149 E41E";} - {fingerprint = "A18D 996A D48C 10E8 B985 A219 B43D 995D 2501 1DFA";} - {fingerprint = "34DB 8D31 F782 2B61 FF06 9503 8B5C 43DC 9105 2999";} + { fingerprint = "3724 B33B 0B85 F067 814C DA30 FC77 0786 0149 E41E"; } + { fingerprint = "A18D 996A D48C 10E8 B985 A219 B43D 995D 2501 1DFA"; } + { fingerprint = "34DB 8D31 F782 2B61 FF06 9503 8B5C 43DC 9105 2999"; } ]; }; wrmilling = { @@ -27414,7 +27414,7 @@ List of NixOS maintainers. email = "Winston@Milli.ng"; github = "wrmilling"; githubId = 6162814; - keys = [{fingerprint = "21E1 6B8D 2EE8 7530 6A6C 9968 D830 77B9 9F8C 6643";}]; + keys = [ { fingerprint = "21E1 6B8D 2EE8 7530 6A6C 9968 D830 77B9 9F8C 6643"; } ]; }; wrvsrx = { name = "wrvsrx"; @@ -27543,8 +27543,8 @@ List of NixOS maintainers. github = "xddxdd"; githubId = 5778879; keys = [ - {fingerprint = "2306 7C13 B6AE BDD7 C0BB 5673 27F3 1700 E751 EC22";} - {fingerprint = "B195 E8FB 873E 6020 DCD1 C0C6 B50E C319 385F CB0D";} + { fingerprint = "2306 7C13 B6AE BDD7 C0BB 5673 27F3 1700 E751 EC22"; } + { fingerprint = "B195 E8FB 873E 6020 DCD1 C0C6 B50E C319 385F CB0D"; } ]; name = "Yuhui Xu"; }; @@ -27593,7 +27593,7 @@ List of NixOS maintainers. xgwq = { name = "XGWQ"; email = "nixos.xgwq@xnee.net"; - keys = [{fingerprint = "6489 9EF2 A256 5C04 7426 686C 8337 A748 74EB E129";}]; + keys = [ { fingerprint = "6489 9EF2 A256 5C04 7426 686C 8337 A748 74EB E129"; } ]; matrix = "@xgwq:nerdberg.de"; github = "peterablehmann"; githubId = 36541313; @@ -27781,8 +27781,8 @@ List of NixOS maintainers. github = "yavko"; githubId = 15178513; keys = [ - {fingerprint = "DC05 7015 ECD7 E68A 6426 EFD8 F07D 19A3 2407 F857";} - {fingerprint = "2874 581F F832 C9E9 AEC6 8D84 E57B F27C 8BB0 80B0";} + { fingerprint = "DC05 7015 ECD7 E68A 6426 EFD8 F07D 19A3 2407 F857"; } + { fingerprint = "2874 581F F832 C9E9 AEC6 8D84 E57B F27C 8BB0 80B0"; } ]; }; yayayayaka = { @@ -27803,7 +27803,7 @@ List of NixOS maintainers. email = "ydlr@ydlr.io"; github = "ydlr"; githubId = 58453832; - keys = [{fingerprint = "FD0A C425 9EF5 4084 F99F 9B47 2ACC 9749 7C68 FAD4";}]; + keys = [ { fingerprint = "FD0A C425 9EF5 4084 F99F 9B47 2ACC 9749 7C68 FAD4"; } ]; }; yechielw = { name = "yechielw"; @@ -27894,7 +27894,7 @@ List of NixOS maintainers. name = "Yurii Matsiuk"; github = "ymatsiuk"; githubId = 24990891; - keys = [{fingerprint = "7BB8 84B5 74DA FDB1 E194 ED21 6130 2290 2986 01AA";}]; + keys = [ { fingerprint = "7BB8 84B5 74DA FDB1 E194 ED21 6130 2290 2986 01AA"; } ]; }; ymeister = { name = "Yuri Meister"; @@ -27930,7 +27930,7 @@ List of NixOS maintainers. githubId = 38936915; name = "Yogansh Sharma"; keys = [ - {fingerprint = "D2A8 A906 ACA7 B6D6 575E 9A2F 3A49 5054 6EA6 9E5C";} + { fingerprint = "D2A8 A906 ACA7 B6D6 575E 9A2F 3A49 5054 6EA6 9E5C"; } ]; }; yomaq = { @@ -27970,7 +27970,7 @@ List of NixOS maintainers. email = "youwenw@gmail.com"; github = "youwen5"; githubId = 38934577; - keys = [{fingerprint = "8F5E 6C1A F909 76CA 7102 917A 8656 58ED 1FE6 1EC3";}]; + keys = [ { fingerprint = "8F5E 6C1A F909 76CA 7102 917A 8656 58ED 1FE6 1EC3"; } ]; }; yrashk = { email = "yrashk@gmail.com"; @@ -28008,7 +28008,7 @@ List of NixOS maintainers. github = "Yumasi"; githubId = 24368641; name = "Guillaume Pagnoux"; - keys = [{fingerprint = "85F8 E850 F8F2 F823 F934 535B EC50 6589 9AEA AF4C";}]; + keys = [ { fingerprint = "85F8 E850 F8F2 F823 F934 535B EC50 6589 9AEA AF4C"; } ]; }; yunfachi = { email = "yunfachi@gmail.com"; @@ -28051,7 +28051,7 @@ List of NixOS maintainers. github = "yusdacra"; githubId = 19897088; name = "Yusuf Bera Ertan"; - keys = [{fingerprint = "9270 66BD 8125 A45B 4AC4 0326 6180 7181 F60E FCB2";}]; + keys = [ { fingerprint = "9270 66BD 8125 A45B 4AC4 0326 6180 7181 F60E FCB2"; } ]; }; yusuf-duran = { github = "yusuf-duran"; @@ -28064,13 +28064,13 @@ List of NixOS maintainers. github = "yuuyins"; githubId = 86538850; name = "Yuu Yin"; - keys = [{fingerprint = "9F19 3AE8 AA25 647F FC31 46B5 416F 303B 43C2 0AC3";}]; + keys = [ { fingerprint = "9F19 3AE8 AA25 647F FC31 46B5 416F 303B 43C2 0AC3"; } ]; }; yvan-sraka = { email = "yvan@sraka.xyz"; github = "yvan-sraka"; githubId = 705213; - keys = [{fingerprint = "FE9A 953C 97E4 54FE 6598 BFDD A4FB 3EAA 6F45 2379";}]; + keys = [ { fingerprint = "FE9A 953C 97E4 54FE 6598 BFDD A4FB 3EAA 6F45 2379"; } ]; matrix = "@/yvan:matrix.org"; name = "Yvan Sraka"; }; @@ -28091,7 +28091,7 @@ List of NixOS maintainers. github = "yzx9"; githubId = 41458459; name = "Zexin Yuan"; - keys = [{fingerprint = "FE16 B281 90EF 6C3F F661 6441 C2DD 1916 FE47 1BE2";}]; + keys = [ { fingerprint = "FE16 B281 90EF 6C3F F661 6441 C2DD 1916 FE47 1BE2"; } ]; }; zacharyweiss = { name = "Zachary Weiss"; @@ -28163,7 +28163,7 @@ List of NixOS maintainers. email = "zane@zanevaniperen.com"; github = "vs49688"; githubId = 4423262; - keys = [{fingerprint = "61AE D40F 368B 6F26 9DAE 3892 6861 6B2D 8AC4 DCC5";}]; + keys = [ { fingerprint = "61AE D40F 368B 6F26 9DAE 3892 6861 6B2D 8AC4 DCC5"; } ]; }; zaninime = { email = "francesco@zanini.me"; @@ -28213,7 +28213,7 @@ List of NixOS maintainers. email = "zacc@ztdp.ca"; github = "zedseven"; githubId = 25164338; - keys = [{fingerprint = "065A 0A98 FE61 E1C1 41B0 AFE7 64FA BC62 F457 2875";}]; + keys = [ { fingerprint = "065A 0A98 FE61 E1C1 41B0 AFE7 64FA BC62 F457 2875"; } ]; }; zelkourban = { name = "zelkourban"; @@ -28232,7 +28232,7 @@ List of NixOS maintainers. email = "i@zenithal.me"; github = "ZenithalHourlyRate"; githubId = 19512674; - keys = [{fingerprint = "1127 F188 280A E312 3619 3329 87E1 7EEF 9B18 B6C9";}]; + keys = [ { fingerprint = "1127 F188 280A E312 3619 3329 87E1 7EEF 9B18 B6C9"; } ]; }; zeorin = { name = "Xandor Schiefer"; @@ -28240,14 +28240,14 @@ List of NixOS maintainers. matrix = "@zeorin:matrix.org"; github = "zeorin"; githubId = 1187078; - keys = [{fingerprint = "863F 093A CF82 D2C8 6FD7 FB74 5E1C 0971 FE4F 665A";}]; + keys = [ { fingerprint = "863F 093A CF82 D2C8 6FD7 FB74 5E1C 0971 FE4F 665A"; } ]; }; zeratax = { email = "mail@zera.tax"; github = "zeratax"; githubId = 5024958; name = "Jona Abdinghoff"; - keys = [{fingerprint = "44F7 B797 9D3A 27B1 89E0 841E 8333 735E 784D F9D4";}]; + keys = [ { fingerprint = "44F7 B797 9D3A 27B1 89E0 841E 8333 735E 784D F9D4"; } ]; }; zeri = { name = "zeri"; @@ -28316,8 +28316,8 @@ List of NixOS maintainers. matrix = "@zimward:zimward.moe"; email = "zimward@zimward.moe"; keys = [ - {fingerprint = "CBF7 FA5E F4B5 8B68 5977 3E3E 4CAC 61D6 A482 FCD9";} - {fingerprint = "E22F 760E E074 E57A 21CB 1733 8DD2 9BB5 2C25 EA09";} + { fingerprint = "CBF7 FA5E F4B5 8B68 5977 3E3E 4CAC 61D6 A482 FCD9"; } + { fingerprint = "E22F 760E E074 E57A 21CB 1733 8DD2 9BB5 2C25 EA09"; } ]; }; Zirconium419122 = { @@ -28362,7 +28362,7 @@ List of NixOS maintainers. githubId = 44469426; name = "Zoey de Souza Pessanha"; email = "zoey.spessanha@outlook.com"; - keys = [{fingerprint = "EAA1 51DB 472B 0122 109A CB17 1E1E 889C DBD6 A315";}]; + keys = [ { fingerprint = "EAA1 51DB 472B 0122 109A CB17 1E1E 889C DBD6 A315"; } ]; }; zohl = { email = "zohl@fmap.me"; @@ -28462,4 +28462,3 @@ List of NixOS maintainers. # keep-sorted end } # Keep the list alphabetically sorted. - diff --git a/pkgs/by-name/wa/wayland-bongocat/package.nix b/pkgs/by-name/wa/wayland-bongocat/package.nix new file mode 100644 index 000000000000..445ce3b0f879 --- /dev/null +++ b/pkgs/by-name/wa/wayland-bongocat/package.nix @@ -0,0 +1,57 @@ +{ + lib, + stdenv, + fetchFromGitHub, + pkg-config, + wayland, + wayland-protocols, + wayland-scanner, +}: +stdenv.mkDerivation (finalAttrs: { + pname = "wayland-bongocat"; + version = "1.2.1"; + src = fetchFromGitHub { + owner = "saatvik333"; + repo = "wayland-bongocat"; + tag = "v${finalAttrs.version}"; + hash = "sha256-mtbw4UW5I2et2cVWrkCKWbG0p3tDGhgmHfH60OHvPkI="; + }; + + # Package dependencies + strictDeps = true; + nativeBuildInputs = [ + pkg-config + wayland-scanner + ]; + buildInputs = [ + wayland + wayland-protocols + ]; + + # Build phases + # Ensure that the Makefile has the correct directory with the Wayland protocols + preBuild = '' + export WAYLAND_PROTOCOLS_DIR="${wayland-protocols}/share/wayland-protocols" + ''; + + makeFlags = [ "release" ]; + installPhase = '' + runHook preInstall + + # Install binaries + install -Dm755 build/bongocat $out/bin/${finalAttrs.meta.mainProgram} + install -Dm755 scripts/find_input_devices.sh $out/bin/bongocat-find-devices + + runHook postInstall + ''; + + # Package information + meta = { + description = "Delightful Wayland overlay that displays an animated bongo cat reacting to keyboard input"; + homepage = "https://github.com/saatvik333/wayland-bongocat"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ voxi0 ]; + mainProgram = "bongocat"; + platforms = lib.platforms.linux; + }; +}) From 7af92bd30324b8b21f715404074ae59e7f460bed Mon Sep 17 00:00:00 2001 From: Thierry Delafontaine Date: Fri, 1 Aug 2025 15:25:14 +0200 Subject: [PATCH 108/116] models-dev: 0-unstable-2025-07-31 -> 0-unstable-2025-08-01 --- pkgs/by-name/mo/models-dev/package.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/by-name/mo/models-dev/package.nix b/pkgs/by-name/mo/models-dev/package.nix index 0c0ffbf851ba..feda2dc96cb6 100644 --- a/pkgs/by-name/mo/models-dev/package.nix +++ b/pkgs/by-name/mo/models-dev/package.nix @@ -9,20 +9,20 @@ let models-dev-node-modules-hash = { - "aarch64-darwin" = "sha256-2EVW5zQTcqH9zBYAegWj/Wtb0lYHZwA7Bbqs3gRjcx0="; - "aarch64-linux" = "sha256-nJgFnszwvknqA21uaqlGQQ1x+4ztKx0/tEvcNrv1LJg="; - "x86_64-darwin" = "sha256-Un6UxmvsmBuDdUwcWnu4qb0nPN1V1PFJi4VGVkNh/YU="; - "x86_64-linux" = "sha256-nlL+Ayacxz4fm404cABORSVGQcNxb3cB4mOezkrI90U="; + "aarch64-darwin" = "sha256-099Y+7cLtSQ0s71vxUGEochQSpCv1hbkwYbWx/eOvhY="; + "aarch64-linux" = "sha256-fOmp7UyszqpR04f5TW0pU96IO7euaxX9fBMtwoqIMY4="; + "x86_64-darwin" = "sha256-OsJDPCsEAAcXzgI/QrtfXXb2jc82pp6ldHuA4Ps8OpM="; + "x86_64-linux" = "sha256-Enx27ag7D0Qeb/ss/7zTQ1XSukyPzOMMK7pTYHqQUMs="; }; in stdenvNoCC.mkDerivation (finalAttrs: { pname = "models-dev"; - version = "0-unstable-2025-07-31"; + version = "0-unstable-2025-08-01"; src = fetchFromGitHub { owner = "sst"; repo = "models.dev"; - rev = "60f2d80bc087ded768a8c6c36981f43822871c78"; - hash = "sha256-mE+ptgTETbF/QIhMwOOVkbT9Jeus8ceGbninagPqgeU="; + rev = "2e3f718c40e8868c2487b7275131b2e054feb462"; + hash = "sha256-P7Q03I68ih2eKNfPkpzkIuvKcHLsrk8yxWbFCw74Pjg="; }; node_modules = stdenvNoCC.mkDerivation { From 628d69a665796b70db9ecc493f8ebf6bbb021e0a Mon Sep 17 00:00:00 2001 From: liberodark Date: Fri, 1 Aug 2025 13:00:55 +0200 Subject: [PATCH 109/116] ucon64: init at 2.2.2 --- pkgs/by-name/uc/ucon64/package.nix | 58 ++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 pkgs/by-name/uc/ucon64/package.nix diff --git a/pkgs/by-name/uc/ucon64/package.nix b/pkgs/by-name/uc/ucon64/package.nix new file mode 100644 index 000000000000..7f5551fd7108 --- /dev/null +++ b/pkgs/by-name/uc/ucon64/package.nix @@ -0,0 +1,58 @@ +{ + lib, + stdenv, + fetchurl, + versionCheckHook, + libusb1, + zlib, +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "ucon64"; + version = "2.2.2"; + + src = fetchurl { + url = "https://sourceforge.net/projects/ucon64/files/ucon64/ucon64-${finalAttrs.version}/ucon64-${finalAttrs.version}-src.tar.gz/download"; + name = "ucon64-${finalAttrs.version}-src.tar.gz"; + hash = "sha256-4QCtSjD2wZq96Y42HGoOysTkBHf1TPt1SYxczSH7Ohg="; + }; + + buildInputs = [ + zlib + libusb1 + ]; + + sourceRoot = "ucon64-${finalAttrs.version}-src/src"; + + # Disable parallel on ARM (sys/io.h is x86-only) + configureFlags = lib.optionals (!stdenv.hostPlatform.isx86) [ + "--disable-parallel" + ]; + + makeFlags = [ + "CC=${stdenv.cc.targetPrefix}cc" + ]; + + installPhase = '' + runHook preInstall + + install -Dm755 ucon64 -t $out/bin/ + + runHook postInstall + ''; + + nativeInstallCheckInputs = [ + versionCheckHook + ]; + + versionCheckProgramArg = "--version"; + doInstallCheck = true; + + meta = { + description = "Tool to backup video game cartridges and perform various ROM operations"; + homepage = "https://ucon64.sourceforge.io/"; + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ liberodark ]; + mainProgram = "ucon64"; + }; +}) From 2f26f6f8b698d16c62679bed0f9fe9c7cfeb7b9f Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Fri, 1 Aug 2025 14:48:05 +0000 Subject: [PATCH 110/116] nixos/tandoor-recipes: fix DB configuration --- nixos/modules/services/misc/tandoor-recipes.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/misc/tandoor-recipes.nix b/nixos/modules/services/misc/tandoor-recipes.nix index 2ef2c5e02741..549b3ad5fa3d 100644 --- a/nixos/modules/services/misc/tandoor-recipes.nix +++ b/nixos/modules/services/misc/tandoor-recipes.nix @@ -184,7 +184,7 @@ in }; }; - services.paperless.settings = lib.mkIf cfg.database.createLocally { + services.tandoor-recipes.extraConfig = lib.mkIf cfg.database.createLocally { DB_ENGINE = "django.db.backends.postgresql"; POSTGRES_HOST = "/run/postgresql"; POSTGRES_USER = "tandoor_recipes"; From bfe8a98e48ca0f75d9e29abfd75e5a190d9c8cfb Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Fri, 30 May 2025 10:11:21 +0200 Subject: [PATCH 111/116] jsonSchemaCatalogs: init --- .../js/json-schema-catalog-rs/package.nix | 4 + .../catalogs/json-patch-schemastore.nix | 33 +++++ .../data/json-schema/catalogs/json-schema.nix | 39 ++++++ pkgs/data/json-schema/default.nix | 28 ++++ pkgs/data/json-schema/lib.nix | 120 ++++++++++++++++++ pkgs/data/json-schema/tests.nix | 69 ++++++++++ pkgs/top-level/all-packages.nix | 7 + 7 files changed, 300 insertions(+) create mode 100644 pkgs/data/json-schema/catalogs/json-patch-schemastore.nix create mode 100644 pkgs/data/json-schema/catalogs/json-schema.nix create mode 100644 pkgs/data/json-schema/default.nix create mode 100644 pkgs/data/json-schema/lib.nix create mode 100644 pkgs/data/json-schema/tests.nix diff --git a/pkgs/by-name/js/json-schema-catalog-rs/package.nix b/pkgs/by-name/js/json-schema-catalog-rs/package.nix index 179906351b01..b441646e7283 100644 --- a/pkgs/by-name/js/json-schema-catalog-rs/package.nix +++ b/pkgs/by-name/js/json-schema-catalog-rs/package.nix @@ -1,6 +1,7 @@ { callPackage, fetchFromGitHub, + jsonSchemaCatalogs, lib, nix-update-script, rustPlatform, @@ -28,6 +29,9 @@ rustPlatform.buildRustPackage (finalAttrs: { passthru = { tests = { run = callPackage ./test-run.nix { json-schema-catalog-rs = finalAttrs.finalPackage; }; + jsonSchemaCatalogs = jsonSchemaCatalogs.tests.override { + json-schema-catalog-rs = finalAttrs.finalPackage; + }; }; updateScript = nix-update-script { }; diff --git a/pkgs/data/json-schema/catalogs/json-patch-schemastore.nix b/pkgs/data/json-schema/catalogs/json-patch-schemastore.nix new file mode 100644 index 000000000000..7eea0445eb76 --- /dev/null +++ b/pkgs/data/json-schema/catalogs/json-patch-schemastore.nix @@ -0,0 +1,33 @@ +{ + fetchurl, + lib, + newCatalog, +}: + +newCatalog { + name = "json-patch-schemastore"; + displayName = "JSON Patch as maintained by the https://www.schemastore.org community"; + version = "2024-11-26"; + groups = { + "JSON Patch" = { + "https://json.schemastore.org/json-patch.json" = fetchurl { + name = "json-patch-schema"; + # Note that we don't use the json.schemastore.org URLs directly, as those are mutable resources. + # Make sure to update the version above! + url = "https://github.com/schemastore/schemastore/raw/138439cd4f9d7bf57d6747b674ce5bbcffbfafdc/src/schemas/json/json-patch.json"; + hash = "sha256-vrqlgvlU61aEO6jd1SLLEqJDZG1k+eTBozcyPmhUp2U="; + }; + }; + }; + extraDescription = '' + A JSON Patch is a sequence of editing and checking operations to perform against another JSON document. + It is specified in IETF RFC 6902: https://datatracker.ietf.org/doc/html/rfc6902/ + + The schema is maintained by the community at https://www.schemastore.org, which is a collection of JSON Schemas for various purposes. + ''; + meta = { + maintainers = with lib.maintainers; [ roberth ]; + license = lib.licenses.asl20; + changelog = "https://github.com/schemastore/schemastore/commits/master/src/schemas/json/json-patch.json"; + }; +} diff --git a/pkgs/data/json-schema/catalogs/json-schema.nix b/pkgs/data/json-schema/catalogs/json-schema.nix new file mode 100644 index 000000000000..68defdc0b301 --- /dev/null +++ b/pkgs/data/json-schema/catalogs/json-schema.nix @@ -0,0 +1,39 @@ +{ + fetchurl, + lib, + newCatalog, +}: + +newCatalog { + name = "json-schema"; + displayName = "JSON Schema Metaschemas"; + groups = { + "JSON Schema" = { + "http://json-schema.org/draft-04/schema#" = fetchurl { + name = "json-schema-draft-04"; + url = "https://json-schema.org/draft-04/schema"; + hash = "sha256-4UidC0dV8CeTMCWR0/y48Htok6gqlPJIlfjk7fEbguI="; + }; + "http://json-schema.org/draft-06/schema#" = fetchurl { + name = "json-schema-draft-06"; + url = "https://json-schema.org/draft-06/schema"; + hash = "sha256-AGTogLohS/8c7lEeZ4++SMmCbdNZ6R4kI/w23mey6+E="; + }; + "http://json-schema.org/draft-07/schema#" = fetchurl { + name = "json-schema-draft-07"; + url = "https://json-schema.org/draft-07/schema"; + hash = "sha256-aS4dFl5Hr8tfEbLOHGOWNf+oNANdbstrzzCHSB2uhAQ="; + }; + # Unclear how newer metaschemas should be handled, so leaving them out for now. + # https://github.com/roberth/json-schema-catalog-rs/issues/8 + }; + }; + meta = { + maintainers = with lib.maintainers; [ roberth ]; + # https://github.com/json-schema-org/json-schema-spec/blob/main/LICENSE + license = [ + lib.licenses.bsd3 + lib.licenses.afl3 + ]; + }; +} diff --git a/pkgs/data/json-schema/default.nix b/pkgs/data/json-schema/default.nix new file mode 100644 index 000000000000..f12bab479074 --- /dev/null +++ b/pkgs/data/json-schema/default.nix @@ -0,0 +1,28 @@ +{ + lib, + newScope, + json-schema-catalog-rs, + jsonschema-cli, +}: +let + inherit (lib) concatMapAttrs optionalAttrs; + inherit (lib.strings) hasSuffix removeSuffix; + + jsonSchemaCatalogs = lib.makeScope newScope ( + self: + { + inherit ((self.callPackage ./lib.nix { }).lib) newCatalog; + tests = self.callPackage ./tests.nix { }; + } + // concatMapAttrs ( + k: v: + optionalAttrs (v == "regular" && hasSuffix ".nix" k) { + ${removeSuffix ".nix" k} = self.callPackage (./catalogs + "/${k}") { }; + } + ) (builtins.readDir ./catalogs) + ); +in +{ + # Exported to `pkgs` + inherit jsonSchemaCatalogs; +} diff --git a/pkgs/data/json-schema/lib.nix b/pkgs/data/json-schema/lib.nix new file mode 100644 index 000000000000..6dfd96b90981 --- /dev/null +++ b/pkgs/data/json-schema/lib.nix @@ -0,0 +1,120 @@ +{ + lib, + json-schema-catalog-rs, + runCommand, + jq, +}: +let + + /** + A somewhat opinionated method for constructing a JSON Schema Catalog from files in a Nix store. + + The input is a slightly simpler format: + + ```nix + { + name = "my-catalog"; # derivation name, default displayName + displayName = "My Catalog"; # optional + groups = { + "Group One" = { + "https://example.com/schemas/one-v1.json" = pkgs.fetchurl { ... }; + "https://example.com/schemas/one-v2.json" = pkgs.fetchurl { ... }; + "https://example.com/schemas/one-common.json" = pkgs.fetchurl { ... }; + }; + "Group Two" = { + "https://example.com/schemas/two-v1.json" = ./two-v1.json; # Files can be local + }; + }; + } + ``` + */ + newCatalog = + { + name, + displayName ? name, + groups, + version ? null, + extraDescription ? null, + meta ? { }, + }: + let + # lazyDerivation tidies up the package attributes + package = lib.lazyDerivation { + derivation = drv; + passthru = { + name = "catalog-${name}"; + internals = drv; + } + // lib.optionalAttrs (version != null) { + inherit version; + }; + meta = { + description = "JSON Schema Catalog for ${displayName}"; + longDescription = + let + licenses = lib.toList meta.license; + show = license: license.fullName or license; + theLicensesApply = + if lib.length licenses == 1 then + "The package license, ${show (lib.head licenses)}, applies" + else + "The package licenses, ${lib.concatMapStringsSep " / " show licenses}, apply"; + in + '' + A JSON Schema Catalog is a mapping from URIs to JSON Schema documents. + It enables offline use, e.g. in build processes, and therefore it improves performance, robustness and safety. + ${lib.optionalString (extraDescription != null) "\n${extraDescription}\n"} + ${theLicensesApply} to the schemas in this catalog. The catalog file itself is licensed under the terms of the Nix expression that governs it, e.g. MIT in the case of Nixpkgs. + ''; + } + // meta; + }; + + drvArgs = { + pname = name; + catalogJson = builtins.toJSON { + name = displayName; + groups = lib.mapAttrsToList (name: group: { + inherit name; + # TODO dedup the longest common prefix by putting it in baseLocation + baseLocation = "/"; + schemas = lib.mapAttrsToList (id: location: { + inherit id; + inherit location; + }) group; + }) groups; + }; + passAsFile = [ "catalogJson" ]; + passthru = { + inherit groups; + }; + nativeBuildInputs = [ + jq + json-schema-catalog-rs + ]; + } + // lib.optionalAttrs (version != null) { + inherit version; + }; + + drv = runCommand "${package.name}${lib.optionalString (version != null) "-${version}"}" drvArgs '' + out_dir="$out/share/json-schema-catalogs" + out_file="$out_dir/$name.json" + + mkdir -p "$out_dir" + + # Write the catalog JSON. `jq` formats it nicely. + jq . <"$catalogJsonPath" >"$out_file" + + json-schema-catalog check "$out_file" + ''; + in + package; +in +{ + lib = + # Exported as part of `pkgs.jsonSchemaCatalogs` + { + inherit newCatalog; + }; +} diff --git a/pkgs/data/json-schema/tests.nix b/pkgs/data/json-schema/tests.nix new file mode 100644 index 000000000000..4929c9cf9cf5 --- /dev/null +++ b/pkgs/data/json-schema/tests.nix @@ -0,0 +1,69 @@ +{ + json-schema, + lib, + json-schema-catalog-rs, + runCommand, +}: + +lib.recurseIntoAttrs { + test-with-json-schema-catalog-rs = + runCommand "json-schema-catalogs-integration-test" + { + nativeBuildInputs = [ + json-schema + json-schema-catalog-rs + ]; + } + '' + cat >example.json <<"EOF" + { + "$id": "https://example.com/schemas/integration-test.json", + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "Integration Test", + "type": "object", + "oneOf": [ + { + "$ref": "http://json-schema.org/draft-07/schema#" + }, + { + "$ref": "http://json-schema.org/draft-07/schema#/definitions/yolo" + }, + { + "$ref": "./foo.json#/definitions/bar" + } + ] + } + EOF + cat >example.json.expected <<"EOF" + { + "$id": "https://example.com/schemas/integration-test.json", + "$schema": "http://json-schema.org/draft-07/schema#", + "oneOf": [ + { + "$ref": "file://${ + json-schema.internals.groups."JSON Schema"."http://json-schema.org/draft-07/schema#" + }#" + }, + { + "$ref": "file://${ + json-schema.internals.groups."JSON Schema"."http://json-schema.org/draft-07/schema#" + }#/definitions/yolo" + }, + { + "$ref": "./foo.json#/definitions/bar" + } + ], + "title": "Integration Test", + "type": "object" + } + EOF + ( set -x; + ! grep '##' example.json.expected + ) + + json-schema-catalog replace --verbose example.json > example.json.out + + diff -U3 --color=always example.json.expected example.json.out + touch $out + ''; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6f4de0910ec4..6b79decd22cf 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11474,6 +11474,13 @@ with pkgs; iosevka-comfy = recurseIntoAttrs (callPackages ../data/fonts/iosevka/comfy.nix { }); + /** + A JSON Schema Catalog is a mapping from URIs to JSON Schema documents. + + It enables offline use, e.g. in build processes, and it improves performance, robustness and safety. + */ + inherit (callPackage ../data/json-schema/default.nix { }) jsonSchemaCatalogs; + kde-rounded-corners = kdePackages.callPackage ../data/themes/kwin-decorations/kde-rounded-corners { }; From 8a0d1de538392992b12faa699063ce519371020a Mon Sep 17 00:00:00 2001 From: liberodark Date: Fri, 1 Aug 2025 17:13:40 +0200 Subject: [PATCH 112/116] travis: move to by-name (#430047) --- .../tools/misc => by-name/tr}/travis/Gemfile | 0 .../tools/misc => by-name/tr}/travis/Gemfile.lock | 0 .../tools/misc => by-name/tr}/travis/gemset.nix | 0 .../default.nix => by-name/tr/travis/package.nix} | 6 +++--- pkgs/development/tools/misc/travis/shell.nix | 12 ------------ pkgs/top-level/all-packages.nix | 2 -- 6 files changed, 3 insertions(+), 17 deletions(-) rename pkgs/{development/tools/misc => by-name/tr}/travis/Gemfile (100%) rename pkgs/{development/tools/misc => by-name/tr}/travis/Gemfile.lock (100%) rename pkgs/{development/tools/misc => by-name/tr}/travis/gemset.nix (100%) rename pkgs/{development/tools/misc/travis/default.nix => by-name/tr/travis/package.nix} (81%) delete mode 100644 pkgs/development/tools/misc/travis/shell.nix diff --git a/pkgs/development/tools/misc/travis/Gemfile b/pkgs/by-name/tr/travis/Gemfile similarity index 100% rename from pkgs/development/tools/misc/travis/Gemfile rename to pkgs/by-name/tr/travis/Gemfile diff --git a/pkgs/development/tools/misc/travis/Gemfile.lock b/pkgs/by-name/tr/travis/Gemfile.lock similarity index 100% rename from pkgs/development/tools/misc/travis/Gemfile.lock rename to pkgs/by-name/tr/travis/Gemfile.lock diff --git a/pkgs/development/tools/misc/travis/gemset.nix b/pkgs/by-name/tr/travis/gemset.nix similarity index 100% rename from pkgs/development/tools/misc/travis/gemset.nix rename to pkgs/by-name/tr/travis/gemset.nix diff --git a/pkgs/development/tools/misc/travis/default.nix b/pkgs/by-name/tr/travis/package.nix similarity index 81% rename from pkgs/development/tools/misc/travis/default.nix rename to pkgs/by-name/tr/travis/package.nix index 52ae177172d3..06d571221be6 100644 --- a/pkgs/development/tools/misc/travis/default.nix +++ b/pkgs/by-name/tr/travis/package.nix @@ -12,12 +12,12 @@ bundlerEnv { passthru.updateScript = bundlerUpdateScript "travis"; - meta = with lib; { + meta = { description = "CLI and Ruby client library for Travis CI"; mainProgram = "travis"; homepage = "https://github.com/travis-ci/travis.rb"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ zimbatm nicknovitski ]; diff --git a/pkgs/development/tools/misc/travis/shell.nix b/pkgs/development/tools/misc/travis/shell.nix deleted file mode 100644 index 0820e89b4ba3..000000000000 --- a/pkgs/development/tools/misc/travis/shell.nix +++ /dev/null @@ -1,12 +0,0 @@ -# Env to update Gemfile.lock / gemset.nix -{ - pkgs ? import ../../../../.. { }, -}: -pkgs.stdenv.mkDerivation { - name = "env"; - buildInputs = with pkgs; [ - ruby.devEnv - gnumake - bundix - ]; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6b79decd22cf..8ebfff206f71 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7590,8 +7590,6 @@ with pkgs; tflint-plugins = recurseIntoAttrs (callPackage ../development/tools/analysis/tflint-plugins { }); - travis = callPackage ../development/tools/misc/travis { }; - tree-sitter = makeOverridable (callPackage ../development/tools/parsing/tree-sitter) { }; tree-sitter-grammars = recurseIntoAttrs tree-sitter.builtGrammars; From f04ae2f0a89da5ba14a0d113fa9741ab7fcc5f3f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 1 Aug 2025 15:20:30 +0000 Subject: [PATCH 113/116] python3Packages.pyemoncms: 0.1.1 -> 0.1.2 --- pkgs/development/python-modules/pyemoncms/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pyemoncms/default.nix b/pkgs/development/python-modules/pyemoncms/default.nix index 9916a440c04e..8651b61f8863 100644 --- a/pkgs/development/python-modules/pyemoncms/default.nix +++ b/pkgs/development/python-modules/pyemoncms/default.nix @@ -10,14 +10,14 @@ buildPythonPackage rec { pname = "pyemoncms"; - version = "0.1.1"; + version = "0.1.2"; pyproject = true; src = fetchFromGitHub { owner = "Open-Building-Management"; repo = "pyemoncms"; tag = "v${version}"; - hash = "sha256-IBrYys0i9pTAw9ul8bqni0H3KNSvKQYNU6D4OSfR6ZE="; + hash = "sha256-61i7VKmPSMUrUSgnDtKROdDdM0QDqOTsqnLjGLkgGII="; }; build-system = [ setuptools ]; @@ -37,7 +37,7 @@ buildPythonPackage rec { ]; meta = { - changelog = "https://github.com/Open-Building-Management/pyemoncms/releases/tag/v${version}"; + changelog = "https://github.com/Open-Building-Management/pyemoncms/releases/tag/${src.tag}"; description = "Python library for emoncms API"; homepage = "https://github.com/Open-Building-Management/pyemoncms"; license = lib.licenses.mit; From bac913fc8b61aa21d05d9349fd747f27c6335b10 Mon Sep 17 00:00:00 2001 From: dish Date: Fri, 25 Jul 2025 16:18:29 -0400 Subject: [PATCH 114/116] tailscale: 1.84.3 -> 1.86.2 https://tailscale.com/changelog#2025-07-29 https://www.youtube.com/watch?v=O4vN3Cwj0pQ&t=329s --- pkgs/by-name/ta/tailscale/package.nix | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/pkgs/by-name/ta/tailscale/package.nix b/pkgs/by-name/ta/tailscale/package.nix index 58f7e7d0b6e8..149737474d5f 100644 --- a/pkgs/by-name/ta/tailscale/package.nix +++ b/pkgs/by-name/ta/tailscale/package.nix @@ -23,7 +23,7 @@ }: let - version = "1.84.3"; + version = "1.86.2"; in buildGoModule { pname = "tailscale"; @@ -37,11 +37,11 @@ buildGoModule { src = fetchFromGitHub { owner = "tailscale"; repo = "tailscale"; - rev = "v${version}"; - hash = "sha256-0HvUNpyi6xzS3PtbgMvh6bLRhV77CZRrVSKGMr7JtbE="; + tag = "v${version}"; + hash = "sha256-hozfvKkvTeaabN1tYl0NlEpjfD4sZQe9Z+agdoXFHNE="; }; - vendorHash = "sha256-QBYCMOWQOBCt+69NtJtluhTZIOiBWcQ78M9Gbki6bN0="; + vendorHash = "sha256-4QTSspHLYJfzlontQ7msXyOB5gzq7ZwSvWmKuYY5klA="; nativeBuildInputs = [ makeWrapper @@ -63,8 +63,7 @@ buildGoModule { ]; excludedPackages = [ - # exlude integration tests which fail to work - # and require additional tooling + # Exclude integration tests which fail to work and require additional tooling "tstest/integration" ]; @@ -79,8 +78,7 @@ buildGoModule { "ts_include_cli" ]; - # remove vendored tooling to ensure it's not used - # also avoids some unnecessary tests + # Remove vendored tooling to ensure it's not used; also avoids some unnecessary tests preBuild = '' rm -rf ./tool ''; @@ -151,6 +149,12 @@ buildGoModule { # flaky: https://github.com/tailscale/tailscale/issues/15348 "TestSafeFuncHappyPath" + + # Requires `go` to be installed with the `go tool` system which we don't use + "TestGoVersion" + + # Fails because we vendor dependencies + "TestLicenseHeaders" ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ # syscall default route interface en0 differs from netstat @@ -165,6 +169,11 @@ buildGoModule { # Fails only on Darwin, succeeds on other tested platforms. "TestOnTailnetDefaultAutoUpdate" + + # Fails due to UNIX domain socket path limits in the Nix build environment. + # Likely we could do something to make the paths shorter. + "TestProtocolQEMU" + "TestProtocolUnixDgram" ]; in [ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ]; From d6a31498c2d825b21d0974f47c2c6ef084cf5340 Mon Sep 17 00:00:00 2001 From: anthony Date: Fri, 1 Aug 2025 15:56:59 +0000 Subject: [PATCH 115/116] python3Packages.ast-grep-py: init at 0.39.1 (#429708) --- .../python-modules/ast-grep-py/default.nix | 43 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 45 insertions(+) create mode 100644 pkgs/development/python-modules/ast-grep-py/default.nix diff --git a/pkgs/development/python-modules/ast-grep-py/default.nix b/pkgs/development/python-modules/ast-grep-py/default.nix new file mode 100644 index 000000000000..e42eb3e754fc --- /dev/null +++ b/pkgs/development/python-modules/ast-grep-py/default.nix @@ -0,0 +1,43 @@ +{ + lib, + ast-grep, + buildPythonPackage, + rustPlatform, + pytestCheckHook, + nix-update-script, +}: +buildPythonPackage { + inherit (ast-grep) version src cargoDeps; + pname = "ast-grep-py"; + pyproject = true; + + buildAndTestSubdir = "crates/pyo3"; + + nativeBuildInputs = with rustPlatform; [ + cargoSetupHook + maturinBuildHook + ]; + + prePatch = '' + substituteInPlace ./crates/pyo3/tests/test_register_lang.py \ + --replace-fail '../..' ${ast-grep.src} + ''; + + nativeCheckInputs = [ pytestCheckHook ]; + + pythonImportsCheck = [ "ast_grep_py" ]; + + passthru.updateScript = nix-update-script { }; + + meta = { + inherit (ast-grep.meta) + description + homepage + changelog + license + ; + maintainers = with lib.maintainers; [ + nezia + ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 12e28b5b02bb..479eb8ef03f9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -973,6 +973,8 @@ self: super: with self; { asserts = callPackage ../development/python-modules/asserts { }; + ast-grep-py = callPackage ../development/python-modules/ast-grep-py { }; + asterisk-mbox = callPackage ../development/python-modules/asterisk-mbox { }; asteroid-filterbanks = callPackage ../development/python-modules/asteroid-filterbanks { }; From 38ee02a87398793fa11d2f102fcc4d00d1e3191d Mon Sep 17 00:00:00 2001 From: Alex Lyon Date: Mon, 28 Jul 2025 04:12:26 -0700 Subject: [PATCH 116/116] nixos/limine: fix installation when using initrd secrets --- nixos/modules/system/boot/loader/limine/limine-install.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nixos/modules/system/boot/loader/limine/limine-install.py b/nixos/modules/system/boot/loader/limine/limine-install.py index 746cb693409c..21cf817509fc 100644 --- a/nixos/modules/system/boot/loader/limine/limine-install.py +++ b/nixos/modules/system/boot/loader/limine/limine-install.py @@ -145,8 +145,10 @@ def config_entry(levels: int, bootspec: BootSpec, label: str, time: str) -> str: entry += f'module_path: ' + get_kernel_uri(bootspec.initrd) + '\n' if bootspec.initrdSecrets: - initrd_secrets_path = str(limine_install_dir) + '/kernels/' + os.path.basename(bootspec.toplevel) + '-secrets' - os.makedirs(initrd_secrets_path) + base_path = str(limine_install_dir) + '/kernels/' + initrd_secrets_path = base_path + os.path.basename(bootspec.toplevel) + '-secrets' + if not os.path.exists(base_path): + os.makedirs(base_path) old_umask = os.umask(0o137) initrd_secrets_path_temp = tempfile.mktemp(os.path.basename(bootspec.toplevel) + '-secrets')