Skip to content
This repository was archived by the owner on Sep 14, 2025. It is now read-only.

Commit 5651d82

Browse files
committed
netbox/plugins: add routing
1 parent e7eeab0 commit 5651d82

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

modules/netbox/default.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ in
146146
kea = mkEnableOption "netbox kea plugin";
147147
attachments = mkEnableOption "netbox attachments plugin";
148148
contextmenus = mkEnableOption "netbox contextmenus plugin";
149+
routing = mkEnableOption "netbox routing plugin";
149150
};
150151
};
151152

@@ -216,6 +217,7 @@ in
216217
#(mkIf cfg.plugin.kea "netbox_kea")
217218
(mkIf cfg.plugin.attachments "netbox_attachments")
218219
(mkIf cfg.plugin.contextmenus "netbox_contextmenus")
220+
(mkIf cfg.plugin.routing "netbox_routing")
219221
];
220222
extraConfig = mkIf cfg.plugin.napalm.enable ''
221223
PLUGINS_CONFIG = {}
@@ -341,6 +343,7 @@ in
341343
})
342344
))
343345
(mkIf cfg.plugin.contextmenus plugins.netbox-contextmenus)
346+
(mkIf cfg.plugin.routing ps.netbox-routing)
344347
];
345348
};
346349
}

0 commit comments

Comments
 (0)