Some checks failed
Check meta / check_dns (push) Failing after 16s
Check meta / check_meta (push) Failing after 15s
Check workflows / check_workflows (push) Successful in 19s
Check meta / check_dns (pull_request) Failing after 15s
Check meta / check_meta (pull_request) Failing after 16s
Run pre-commit on all files / pre-commit (push) Failing after 30s
Check workflows / check_workflows (pull_request) Successful in 18s
Build all the nodes / ap01 (pull_request) Failing after 35s
Build all the nodes / bridge01 (pull_request) Failing after 55s
Build all the nodes / build01 (pull_request) Failing after 56s
Build all the nodes / cof02 (pull_request) Failing after 1m1s
Build all the nodes / netaccess01 (pull_request) Failing after 20s
Build all the nodes / netcore00 (pull_request) Failing after 21s
Build all the nodes / netcore01 (pull_request) Failing after 21s
Build all the nodes / netcore02 (pull_request) Failing after 20s
Build all the nodes / geo01 (pull_request) Failing after 53s
Build all the nodes / geo02 (pull_request) Failing after 53s
Build all the nodes / hypervisor01 (pull_request) Failing after 53s
Build all the nodes / hypervisor03 (pull_request) Failing after 49s
Build all the nodes / hypervisor02 (pull_request) Failing after 54s
Build all the nodes / compute01 (pull_request) Failing after 1m17s
Build all the nodes / testing02 (pull_request) Failing after 40s
Build the shell / build-shell (pull_request) Failing after 24s
Run pre-commit on all files / pre-commit (pull_request) Failing after 30s
Build all the nodes / storage01 (pull_request) Failing after 55s
Build all the nodes / rescue01 (pull_request) Failing after 1m1s
Build all the nodes / tower01 (pull_request) Failing after 54s
Build all the nodes / vault01 (pull_request) Failing after 59s
Build all the nodes / web02 (pull_request) Failing after 56s
Build all the nodes / web03 (pull_request) Failing after 59s
Build all the nodes / web01 (pull_request) Failing after 1m16s
32 lines
566 B
Nix
32 lines
566 B
Nix
# SPDX-FileCopyrightText: 2024 Tom Hubrecht <tom.hubrecht@dgnum.eu>
|
|
#
|
|
# SPDX-License-Identifier: EUPL-1.2
|
|
|
|
{ lib, pkgs, ... }:
|
|
|
|
lib.extra.mkConfig {
|
|
enabledModules = [
|
|
# List of modules to enable
|
|
"dgn-web"
|
|
];
|
|
|
|
enabledServices = [
|
|
# List of services to enable
|
|
"cas-eleves"
|
|
];
|
|
|
|
extraConfig = {
|
|
# Disable monitoring
|
|
dgn-monitoring.enable = false;
|
|
dgn-backups.jobs = lib.mkForce { };
|
|
|
|
# Enable Postgres databases
|
|
services.postgresql = {
|
|
enable = true;
|
|
|
|
package = pkgs.postgresql_16;
|
|
};
|
|
};
|
|
|
|
root = ./.;
|
|
}
|