add agent

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-11-18 22:28:36 -06:00
parent 53415e179a
commit 220a4acd52
2 changed files with 2 additions and 28 deletions

View file

@ -6,7 +6,8 @@
./litellm.nix
./nixarr.nix
./monitoring.nix
./monitoring_new.nix
./monitoring_hub.nix
./monitoring_agent.nix
./pinchflat.nix
./openwebui.nix
./trilium.nix

View file

@ -1,27 +0,0 @@
{
inputs,
...
}:
let
declaration = "services/monitoring/beszel-hub.nix";
nixpkgs = inputs.beszel-nixpkgs;
pkgs = import nixpkgs {
system = "x86_64-linux";
config.allowUnfree = true;
};
in
{
disabledModules = [ declaration ];
imports = [ "${nixpkgs}/nixos/modules/${declaration}" ];
config = {
services.beszel.hub = {
package = pkgs.beszel;
enable = true;
port = 8090;
host = "100.64.0.13";
environment = {
# DISABLE_PASSWORD_AUTH = "true"; # Once sso is setup
};
};
};
}