26 lines
480 B
Nix
26 lines
480 B
Nix
# SPDX-FileCopyrightText: 2024 Tom Hubrecht <tom.hubrecht@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
|
|
];
|
|
|
|
extraConfig = {
|
|
# Disable monitoring
|
|
dgn-monitoring.enable = false;
|
|
dgn-records.enable = false;
|
|
dgn-notify.enable = false;
|
|
dgn-backups.jobs = lib.mkForce { };
|
|
};
|
|
|
|
root = ./.;
|
|
}
|