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