infrastructure/machines/nixos/web03/_configuration.nix

25 lines
409 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
"django-apps"
"redirections"
"users-guests"
];
extraConfig = {
services.netbird.enable = true;
};
root = ./.;
}