forked from DGNum/infrastructure
17 lines
264 B
Nix
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 = ./.;
|
|
}
|