lab-infra/machines/router02/_configuration.nix
2024-12-13 12:06:49 +01:00

17 lines
227 B
Nix

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