infrastructure/machines/nixos/hypervisor01/_configuration.nix
2024-12-17 17:41:33 +01:00

17 lines
264 B
Nix

# SPDX-FileCopyrightText: 2024 Elias Coppens <elias@dgnum.eu>
#
# SPDX-License-Identifier: EUPL-1.2
{ lib, ... }:
lib.extra.mkConfig {
enabledModules = [ ];
enabledServices = [ ];
extraConfig = {
services.netbird.enable = true;
};
root = ./.;
}