fix: some issues with clio running

This commit is contained in:
Jeremy Wall 2024-06-04 21:21:46 -04:00
parent 5dc17480e0
commit 05fe2a58f6
4 changed files with 9 additions and 7 deletions

View File

@ -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": {

View File

@ -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; [

View File

@ -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";

View File

@ -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";