Remove rudimentary netbox module

Accidentally committed a while ago
This commit is contained in:
Katherina Walshe-Grey 2025-04-08 17:22:10 +01:00
parent 8f8f2556a0
commit 4f82380855

View file

@ -1,16 +0,0 @@
{ config, lib, pkgs }:
{
randomcat.services.zfs.datasets = {
"rpool/state" = { mountpoint = "none"; };
"rpool/state/netbox" = { mountpoint = "/var/lib/netbox"; };
};
services.netbox = {
enable = true;
package = pkgs.netbox_4_1;
port = 8001;
dataDir = "/var/lib/netbox";
secretKeyFile = ""; #
};
}