infrastructure/modules/nixos/default.nix
catvayor d756a39e09
Some checks failed
Check meta / check_dns (pull_request) Successful in 15s
Check workflows / check_workflows (pull_request) Successful in 17s
Build all the nodes / Jaccess04 (pull_request) Successful in 25s
Check meta / check_meta (pull_request) Successful in 27s
Build all the nodes / netcore02 (pull_request) Successful in 24s
Run pre-commit on all files / pre-commit (pull_request) Successful in 33s
Build all the nodes / netcore01 (pull_request) Successful in 36s
Build all the nodes / Jaccess01 (pull_request) Successful in 37s
Run pre-commit on all files / pre-commit (push) Successful in 39s
Build all the nodes / ap01 (pull_request) Successful in 54s
Build all the nodes / bridge01 (pull_request) Successful in 57s
Build all the nodes / geo02 (pull_request) Successful in 57s
Build all the nodes / hypervisor01 (pull_request) Successful in 57s
Build all the nodes / lab-router01 (pull_request) Successful in 59s
Build all the nodes / hypervisor02 (pull_request) Successful in 1m3s
Build all the nodes / cof02 (pull_request) Successful in 1m4s
Build all the nodes / geo01 (pull_request) Successful in 1m5s
Build all the nodes / hypervisor03 (pull_request) Successful in 1m5s
Build all the nodes / compute01 (pull_request) Failing after 1m7s
Build all the nodes / build01 (pull_request) Successful in 1m11s
Build all the nodes / iso (pull_request) Successful in 1m11s
Build all the nodes / tower01 (pull_request) Successful in 51s
Build all the nodes / vault01 (pull_request) Successful in 57s
Build the shell / build-shell (pull_request) Successful in 26s
Build all the nodes / web02 (pull_request) Successful in 48s
Build all the nodes / krz01 (pull_request) Successful in 1m35s
Build all the nodes / rescue01 (pull_request) Successful in 1m23s
Build all the nodes / web03 (pull_request) Successful in 51s
Build all the nodes / web01 (pull_request) Successful in 1m14s
Build all the nodes / storage01 (pull_request) Successful in 2m5s
Build all the nodes / zulip01 (pull_request) Successful in 48s
feat(nimbolus): init a http terraform backend
2025-06-11 17:19:17 +02:00

62 lines
1.4 KiB
Nix

# Copyright :
# SPDX-FileCopyrightText: 2024 Maurice Debray <maurice.debray@dgnum.eu>
# SPDX-FileCopyrightText: 2024 Ryan Lahfa <ryan.lahfa@dgnum.eu>
# SPDX-FileCopyrightText: 2024 Tom Hubrecht <tom.hubrecht@dgnum.eu>
#
# SPDX-License-Identifier: EUPL-1.2
{
lib,
nodeMeta,
sources,
...
}:
{
imports =
(lib.extra.mkImports ./. [
"dgn-access-control"
"dgn-acme"
"dgn-audit"
"dgn-backups"
"dgn-console"
"dgn-chatops"
"dgn-ens-ntp"
"dgn-firewall"
"dgn-forgejo-runners"
"dgn-hardware"
"dgn-monitoring"
"dgn-netbox-agent"
"dgn-network"
"dgn-notify"
"dgn-records"
"dgn-redirections"
"dgn-s3"
"dgn-ssh"
"dgn-vm-variant"
"dgn-web"
"django-apps"
"extranix"
"forgejo-multiuser-nix-runners"
"nimbolus-tf"
"openbao"
])
++ [
"${sources.agenix}/modules/age.nix"
"${sources.arkheon}/module.nix"
"${sources."microvm.nix"}/nixos-modules/host"
]
++ ((import sources.nix-modules { inherit lib; }).importModules (
[
"age-secrets"
"services/bupstash"
"services/forgejo-nix-runners"
"services/nginx-sni"
"services/reaction"
"services/systemd-notify"
"services/victorialogs"
"services/victoriametrics"
]
++ nodeMeta.nix-modules
));
}