dotfiles/hosts/h001/mods/monitoring_hub.nix
RingOfStorms (Joshua Bell) 457c53203d remove bad system usage
2025-12-04 18:39:35 -06:00

28 lines
587 B
Nix

{
inputs,
pkgs,
...
}:
let
declaration = "services/monitoring/beszel-hub.nix";
nixpkgsBeszel = inputs.beszel-nixpkgs;
pkgsBeszel = import nixpkgsBeszel {
inherit (pkgs) system;
config.allowUnfree = true;
};
in
{
disabledModules = [ declaration ];
imports = [ "${nixpkgsBeszel}/nixos/modules/${declaration}" ];
config = {
services.beszel.hub = {
package = pkgsBeszel.beszel;
enable = true;
port = 8090;
host = "100.64.0.13";
environment = {
# DISABLE_PASSWORD_AUTH = "true"; # Once sso is setup
};
};
};
}