forked from DGNum/infrastructure
20 lines
311 B
Nix
20 lines
311 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
lib.extra.mkConfig {
|
|
enabledModules = [
|
|
# List of modules to enable
|
|
];
|
|
|
|
enabledServices = [
|
|
# List of services to enable
|
|
"network"
|
|
];
|
|
|
|
extraConfig = {
|
|
services.netbird.enable = true;
|
|
|
|
environment.systemPackages = [ pkgs.bcachefs-tools ];
|
|
};
|
|
|
|
root = ./.;
|
|
}
|