lab-infra/machines/router02/_configuration.nix
2024-10-18 12:16:16 +02:00

16 lines
211 B
Nix

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