infrastructure/machines/nixos/zulip01/_configuration.nix
2025-06-02 20:03:50 +02:00

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