infrastructure/machines/compute01/librenms/default.nix
Tom Hubrecht 42e1d6dcd7
All checks were successful
build configuration / build_storage01 (push) Successful in 54s
build configuration / build_vault01 (push) Successful in 50s
build configuration / build_compute01 (push) Successful in 3m53s
build configuration / build_web01 (push) Successful in 1m13s
lint / check (push) Successful in 23s
build configuration / build_web02 (push) Successful in 50s
ds-fr update / npins_update (push) Successful in 2m23s
feat(compute01): Deploy librenms on nms.dgnum.eu
2024-02-18 15:27:48 +01:00

41 lines
841 B
Nix

{ config, pkgs, ... }:
let
host = "nms.dgnum.eu";
in
{
imports = [ ./module.nix ];
services.librenms = {
enable = true;
package =
(pkgs.librenms.override { inherit (config.services.librenms) dataDir logDir; }).overrideAttrs
(
old: {
patches = (old.patches or [ ]) ++ [ ./kanidm.patch ];
vendorHash = "sha256-2RgtMXQp4fTE+WloO36rtfytO4Sh2q0plt8WkWxEGHI=";
}
);
hostname = host;
settings = { };
database = {
createLocally = true;
passwordFile = config.age.secrets."librenms-database_password_file".path;
};
environmentFile = config.age.secrets."librenms-environment_file".path;
nginx = {
serverName = host;
enableACME = true;
forceSSL = true;
};
};
age-secrets.autoMatch = [ "librenms" ];
}