infrastructure/machines/nixos/cof02/_configuration.nix
catvayor bd4c64db02
feat(cof02): init cof staging vm
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
2025-03-10 10:19:04 +01:00

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 = ./.;
}