lab-infra/machines/router02/_configuration.nix

18 lines
227 B
Nix
Raw Normal View History

2024-10-18 11:05:12 +02:00
{ lib, ... }:
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
];
enabledServices = [
# List of services to enable
"networking"
2024-12-05 09:59:59 +01:00
"wireguard"
2024-10-18 11:05:12 +02:00
];
extraConfig = { };
root = ./.;
}