add reporting fix

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-06-24 10:58:41 -05:00
parent 5f363050c9
commit 2004734c7b
4 changed files with 19 additions and 114 deletions

View file

@ -33,7 +33,6 @@ in
default = true;
description = "Enable jetbrains mono font";
};
};
config = lib.mkIf cfg.jetbrainsMonoFont {

View file

@ -7,6 +7,7 @@ let
ccfg = import ../config.nix;
cfg_path = [
ccfg.custom_config_key
"general"
"reporting"
];
cfg = lib.attrsets.getAttrFromPath cfg_path config;
@ -18,7 +19,7 @@ in
enable = lib.mkEnableOption "Reporting node info and logs to grafana";
lokiUrl = lib.mkOption {
type = lib.types.str;
default = "http://100.64.0.13:3100/loki/api/v1/push";
default = "http://h001.net.joshuabell.xyz:3100/loki/api/v1/push";
description = "URL of the Loki instance to send logs to";
};
};