forked from DGNum/lab-infra
3915b492c4
Lab's core infra vm, doing only dns64 for now.
16 lines
208 B
Nix
16 lines
208 B
Nix
{ lib, ... }:
|
|
|
|
lib.extra.mkConfig {
|
|
enabledModules = [
|
|
# List of modules to enable
|
|
];
|
|
|
|
enabledServices = [
|
|
# List of services to enable
|
|
"unbound"
|
|
];
|
|
|
|
extraConfig = { };
|
|
|
|
root = ./.;
|
|
}
|