25 lines
313 B
Nix
25 lines
313 B
Nix
{ lib, ... }:
|
|
|
|
lib.extra.mkConfig {
|
|
enabledModules = [
|
|
# List of modules to enable
|
|
"lab-routexp"
|
|
];
|
|
|
|
enabledServices = [
|
|
# List of services to enable
|
|
];
|
|
|
|
extraConfig = {
|
|
lab-routexp = {
|
|
id = 1;
|
|
|
|
connections = [
|
|
1001
|
|
1002
|
|
];
|
|
};
|
|
};
|
|
|
|
root = ./.;
|
|
}
|