infrastructure/machines/nixos/web03/_configuration.nix

24 lines
371 B
Nix
Raw Normal View History

# SPDX-FileCopyrightText: 2024 Tom Hubrecht <tom.hubrecht@dgnum.eu>
#
# SPDX-License-Identifier: EUPL-1.2
2024-10-16 11:07:40 +02:00
{ lib, ... }:
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
"dgn-web"
];
enabledServices = [
# List of services to enable
"django-apps"
2024-10-16 11:07:40 +02:00
];
extraConfig = {
services.netbird.enable = true;
};
2024-10-16 11:07:40 +02:00
root = ./.;
}