1
0
Fork 0
forked from DGNum/lab-infra
lab-infra/machines/labcore01/_configuration.nix
sinavir 3915b492c4 feat(labcore01): init
Lab's core infra vm, doing only dns64 for now.
2024-11-07 01:10:24 +01:00

16 lines
208 B
Nix

{ lib, ... }:
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
];
enabledServices = [
# List of services to enable
"unbound"
];
extraConfig = { };
root = ./.;
}