common: disable promtail (deprecated). Point auto-upgrade to upgrade branch

This commit is contained in:
2026-05-31 19:04:12 +02:00
parent a07eb1f799
commit ebbc271378
2 changed files with 2 additions and 37 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
{ {
system.autoUpgrade = { system.autoUpgrade = {
enable = true; enable = true;
flake = "git+https://git.feal.no/felixalb/nixos-config.git"; flake = "git+https://git.feal.no/felixalb/nixos-config.git?ref=nixos-26.05"; # TODO - restore to main
flags = [ flags = [
# Override nixpkgs (only). Notably does not include home-manager, sops or other utility/application flake inputs. # Override nixpkgs (only). Notably does not include home-manager, sops or other utility/application flake inputs.
"--refresh" "--refresh"
+1 -36
View File
@@ -17,41 +17,6 @@ in {
''; '';
}; };
services.promtail = { # TODO: Configure fluent-bit or rsyslog
enable = true;
configuration = {
server = {
http_listen_port = 28183;
grpc_listen_port = 0;
};
clients = [
{
url = "http://${metricsHost}:3100/loki/api/v1/push";
}
];
scrape_configs = [
{
job_name = "systemd-journal";
journal = {
max_age = "12h";
labels = {
job = "systemd-journal";
host = config.networking.hostName;
};
};
relabel_configs = [
{
source_labels = [ "__journal__systemd_unit" ];
target_label = "unit";
}
{
source_labels = [ "__journal_priority_keyword" ];
target_label = "level";
}
];
}
];
};
};
} }