infrastructure/patches/default.nix
sinavir 0a41c80113
feat(netbox): use nixpkgs-stable package
Co-authored-by: catvayor <catvayor@katvayor.net>
2025-04-12 17:36:48 +02:00

50 lines
1.2 KiB
Nix

# SPDX-FileCopyrightText: 2024 Tom Hubrecht <tom.hubrecht@dgnum.eu>
#
# SPDX-License-Identifier: EUPL-1.2
let
local = path: {
_type = "static";
inherit path;
};
npr = id: hash: { inherit id hash; };
in
{
lix = [
(local ./lix/01-disable-installChecks.patch)
];
"nixos-24.11" = [
# nixos/nextcloud: Rename autocreate (a no-op) to verify_bucket_exists
(local ./nixpkgs/09-rename-autocreate-to-verify_bucket_exists.patch)
# Crabfit: don't depend on all google-fonts
(local ./nixpkgs/03-crabfit-karla.patch)
# pretalx env file option
(local ./nixpkgs/01-pretalx-environment-file.patch)
# Kanidm memberless groups provisionning
(local ./nixpkgs/07-kanidm-groups-module.patch)
(local ./nixpkgs/08-kanidm-groups-pkgs.patch)
# openbao: init at 2.0.3
(npr 354366 "sha256-hnGmwmkGeGY6fwZ3L3HSvUX5A5ZpxgslzfmSs1UowdA=")
# openbao: 2.1.0 -> 2.1.1
(npr 375706 "sha256-BQ4O/ub4tivf4cKb7flTpzC7T/4pIQuyEGOwfD12gco=")
];
"nixos-unstable" = [
# Build netbird-relay
(local ./nixpkgs/05-netbird-relay.patch)
];
"agenix" = [
{
_type = "url";
url = "https://github.com/ryantm/agenix/pull/292.patch";
hash = "sha256-e45hiHF0HbCYb+3RRhy+8nNIFvefb6SZSN3xcl1mpvI=";
}
];
}