infrastructure/machines/nixos/rescue01/_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-02-21 01:44:48 +01:00
{ lib, ... }:
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
"dgn-web"
2024-02-21 01:44:48 +01:00
];
enabledServices = [
# List of services to enable
2024-03-28 16:25:29 +01:00
"uptime-kuma"
2024-02-21 01:44:48 +01:00
];
extraConfig = {
services.netbird.enable = true;
};
root = ./.;
}