diff --git a/nix/base-system/flake.lock b/nix/base-system/flake.lock index 5fd393c..a37e243 100644 --- a/nix/base-system/flake.lock +++ b/nix/base-system/flake.lock @@ -31,11 +31,11 @@ "rust-overlay": "rust-overlay" }, "locked": { - "lastModified": 1717545303, - "narHash": "sha256-WjFMrdMpWAhC4FVGfLp/8j2GqylCdqBuTmatNd7HgXE=", + "lastModified": 1717548187, + "narHash": "sha256-ytVAw4wfAKHPkL39mc9HnyWhS8UF07Lj6FwKWLpAh7k=", "owner": "zaphar", "repo": "clio", - "rev": "ece2e6ad7a9c888f5ead3c6e9e22dfc57574f809", + "rev": "9c5da58363b2b83ad8fce933996f6131701bbe87", "type": "github" }, "original": { diff --git a/nix/base-system/flake.nix b/nix/base-system/flake.nix index fba3937..fe28eef 100644 --- a/nix/base-system/flake.nix +++ b/nix/base-system/flake.nix @@ -330,6 +330,8 @@ EOF"; # NOTE(jwall): I include these initially for nvim telescope ripgrep fd + vector + victoriametrics # TODO add sonic-pi here if it supports the arch ]) ++ (with pkgs.ocamlPackages; [ diff --git a/nix/base-system/modules/darwin-monitor.nix b/nix/base-system/modules/darwin-monitor.nix index 8bb2791..7d6aa02 100644 --- a/nix/base-system/modules/darwin-monitor.nix +++ b/nix/base-system/modules/darwin-monitor.nix @@ -27,7 +27,7 @@ with lib; default = "${config.services.heracles.logsPath}/heracles.out.log"; }; stderrPath = mkOption { - default = "${config.services.heracles.logsPath}/heracles.out.log"; + default = "${config.services.heracles.logsPath}/heracles.err.log"; }; pidPath = mkOption { default = "${config.services.heracles.logsPath}/heracles.pid"; @@ -50,7 +50,7 @@ with lib; default = "/var/log/durnitisp.out.log"; }; stderrPath = mkOption { - default = "/var/log/durnitisp.out.log"; + default = "/var/log/durnitisp.err.log"; }; # TODO(zaphar): Should this be written somewhere else? pidPath = mkOption { @@ -69,7 +69,7 @@ with lib; default = "${config.services.prometheus.dataPath}/prometheus.out.log"; }; stderrPath = mkOption { - default = "${config.services.prometheus.dataPath}/prometheus.out.log"; + default = "${config.services.prometheus.dataPath}/prometheus.err.log"; }; pidPath = mkOption { default = "${config.services.prometheus.dataPath}/prometheus.pid"; diff --git a/nix/base-system/modules/vector.nix b/nix/base-system/modules/vector.nix index eb5a95f..b97adbf 100644 --- a/nix/base-system/modules/vector.nix +++ b/nix/base-system/modules/vector.nix @@ -14,7 +14,7 @@ with lib; default = "/var/log/vector.out.log"; }; stderrPath = mkOption { - default = "/var/log/vector.out.log"; + default = "/var/log/vector.err.log"; }; pidPath = mkOption { default = "/var/log/vector.pid";