forked from DGNum/infrastructure
feat(compute01): Deploy librenms on nms.dgnum.eu
This commit is contained in:
parent
69ecadbbd1
commit
42e1d6dcd7
7 changed files with 853 additions and 0 deletions
41
machines/compute01/librenms/default.nix
Normal file
41
machines/compute01/librenms/default.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{ 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" ];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue