lab-infra/machines/labcore01/_configuration.nix

18 lines
220 B
Nix
Raw Permalink Normal View History

{ lib, ... }:
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
];
enabledServices = [
# List of services to enable
"unbound"
2024-12-22 02:46:44 +01:00
"nginx"
];
extraConfig = { };
root = ./.;
}