infrastructure/machines/nixos/hypervisor03/_configuration.nix

18 lines
264 B
Nix
Raw Normal View History

2024-12-17 16:32:22 +01:00
# 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 = ./.;
}