forked from DGNum/infrastructure
The purpose of cof02 is to allow presenting under development features on gestiocof, or check that the next update of gestiocof works in production-like environment, by placing it in a near perfect copy of this environment
25 lines
440 B
Nix
25 lines
440 B
Nix
# SPDX-FileCopyrightText: 2025 Lubin Bailly <lubin.bailly@dgnum.eu>
|
|
#
|
|
# SPDX-License-Identifier: EUPL-1.2
|
|
|
|
{ lib, ... }:
|
|
|
|
lib.extra.mkConfig {
|
|
enabledModules = [
|
|
# List of modules to enable
|
|
"dgn-web"
|
|
];
|
|
|
|
enabledServices = [
|
|
# List of services to enable
|
|
"staging-gestiocofs"
|
|
];
|
|
|
|
extraConfig = {
|
|
dgn-records.enable = false;
|
|
dgn-monitoring.enable = false;
|
|
dgn-notify.enable = false;
|
|
};
|
|
|
|
root = ./.;
|
|
}
|