Some checks failed
Build all the nodes / ap01 (pull_request) Successful in 1m2s
Build all the nodes / netcore01 (pull_request) Successful in 33s
Build all the nodes / netcore02 (pull_request) Successful in 43s
Build the shell / build-shell (pull_request) Successful in 40s
Build all the nodes / build01 (pull_request) Failing after 3m11s
Build all the nodes / bridge01 (pull_request) Successful in 4m59s
Build all the nodes / cof02 (pull_request) Successful in 4m57s
Build all the nodes / vault01 (pull_request) Successful in 4m5s
Build all the nodes / web02 (pull_request) Successful in 4m11s
Build all the nodes / hypervisor03 (pull_request) Successful in 4m52s
Build all the nodes / hypervisor01 (pull_request) Successful in 4m59s
Build all the nodes / rescue01 (pull_request) Successful in 4m29s
Build all the nodes / geo02 (pull_request) Successful in 5m1s
Build all the nodes / geo01 (pull_request) Successful in 5m8s
Build all the nodes / compute01 (pull_request) Successful in 5m11s
Build all the nodes / hypervisor02 (pull_request) Successful in 4m59s
Build all the nodes / web03 (pull_request) Successful in 4m10s
Check meta / check_dns (pull_request) Successful in 23s
Build all the nodes / web01 (pull_request) Successful in 4m17s
Check workflows / check_workflows (pull_request) Successful in 26s
Build all the nodes / tower01 (pull_request) Successful in 4m18s
Check meta / check_meta (pull_request) Successful in 28s
Build all the nodes / storage01 (pull_request) Successful in 4m22s
Build all the nodes / zulip01 (pull_request) Successful in 4m10s
Build all the nodes / iso (pull_request) Successful in 4m44s
Build all the nodes / Jaccess01 (pull_request) Successful in 35s
Build all the nodes / lab-router01 (pull_request) Successful in 4m41s
Run pre-commit on all files / pre-commit (push) Successful in 40s
Build all the nodes / Jaccess04 (pull_request) Successful in 32s
Build all the nodes / krz01 (pull_request) Successful in 4m45s
Run pre-commit on all files / pre-commit (pull_request) Successful in 44s
66 lines
1.6 KiB
Nix
66 lines
1.6 KiB
Nix
# SPDX-FileCopyrightText: 2024 Tom Hubrecht <tom.hubrecht@dgnum.eu>
|
|
#
|
|
# SPDX-License-Identifier: EUPL-1.2
|
|
|
|
with {
|
|
local = path: {
|
|
_type = "static";
|
|
inherit path;
|
|
};
|
|
|
|
npr = id: hash: { inherit id hash; };
|
|
};
|
|
|
|
{
|
|
colmena = [
|
|
(local ./colmena/0001-Revert-add-aliases-refactor-eval-logic.patch)
|
|
];
|
|
|
|
lix = [
|
|
(local ./lix/01-disable-installChecks.patch)
|
|
];
|
|
|
|
lon = [
|
|
(local ./lon/01-npins-import.patch)
|
|
];
|
|
|
|
"nixos-25.05" = [
|
|
# 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-25.05-kanidm-groups-module.patch)
|
|
(local ./nixpkgs/08-25.05-kanidm-groups-pkgs.patch)
|
|
];
|
|
|
|
"nixos-24.11" = [
|
|
# 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)
|
|
];
|
|
|
|
"nixos-unstable" = [
|
|
# Build netbird-relay
|
|
(local ./nixpkgs/05-netbird-relay.patch)
|
|
|
|
# netbird-dashboard: 2.9.0 -> 2.12.0
|
|
(npr 403844 "sha256-oQUc/UEvWOdZ5IyemnZeFS5dVysblqdV9fm6t790Kms=")
|
|
];
|
|
|
|
"agenix" = [
|
|
{
|
|
_type = "url";
|
|
url = "https://github.com/ryantm/agenix/commit/48b60f7c1c7023af52212555bdb6d07472402863.patch";
|
|
hash = "sha256-e45hiHF0HbCYb+3RRhy+8nNIFvefb6SZSN3xcl1mpvI=";
|
|
}
|
|
];
|
|
}
|