From 4fa9a2fe7de8f8750ac00b2917e376343f3c518b Mon Sep 17 00:00:00 2001 From: Rouven Seifert Date: Mon, 6 May 2024 11:21:12 +0200 Subject: [PATCH] treewide: cleanup with deadnix --- hosts/quitte/configuration.nix | 2 +- modules/monitoring.nix | 2 +- overlays/default.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hosts/quitte/configuration.nix b/hosts/quitte/configuration.nix index 2d7faa1..6f18e21 100644 --- a/hosts/quitte/configuration.nix +++ b/hosts/quitte/configuration.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ pkgs, ... }: { imports = diff --git a/modules/monitoring.nix b/modules/monitoring.nix index af28b88..ed68e37 100644 --- a/modules/monitoring.nix +++ b/modules/monitoring.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ config, ... }: let domain = "monitoring.${config.networking.domain}"; in diff --git a/overlays/default.nix b/overlays/default.nix index d5d37e5..7240ef2 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -13,7 +13,7 @@ in }; })); # (hopefully) fix systemd journal reading - prometheus-postfix-exporter = prev.prometheus-postfix-exporter.overrideAttrs (old: { + prometheus-postfix-exporter = prev.prometheus-postfix-exporter.overrideAttrs (_old: { patches = [ ./prometheus-postfix-exporter/0001-cleanup-also-catch-milter-reject.patch ];