mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 05:13:10 +01:00
falkenstein: remove syslog
This commit is contained in:
parent
f829430b35
commit
d96a4a341c
|
@ -6,7 +6,6 @@
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./modules/backup
|
./modules/backup
|
||||||
./modules/caddy
|
./modules/caddy
|
||||||
./modules/logging
|
|
||||||
./modules/dns
|
./modules/dns
|
||||||
./modules/fail2ban
|
./modules/fail2ban
|
||||||
./modules/mail
|
./modules/mail
|
||||||
|
|
|
@ -1,29 +0,0 @@
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
services.rsyslogd = {
|
|
||||||
enable = true;
|
|
||||||
defaultConfig = ''
|
|
||||||
:programname, isequal, "postfix" /var/log/postfix.log
|
|
||||||
|
|
||||||
auth.* -/var/log/auth.log
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
services.logrotate.configFile = pkgs.writeText "logrotate.conf" ''
|
|
||||||
weekly
|
|
||||||
missingok
|
|
||||||
notifempty
|
|
||||||
rotate 4
|
|
||||||
"/var/log/postfix.log" {
|
|
||||||
compress
|
|
||||||
delaycompress
|
|
||||||
weekly
|
|
||||||
rotate 156
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
# "/var/log/caddy/*.log" {
|
|
||||||
# compress
|
|
||||||
# delaycompress
|
|
||||||
# weekly
|
|
||||||
# rotate 26
|
|
||||||
# }
|
|
||||||
}
|
|
|
@ -3,7 +3,6 @@ let
|
||||||
inherit (prev) callPackage;
|
inherit (prev) callPackage;
|
||||||
inherit (prev) fetchFromGitHub;
|
inherit (prev) fetchFromGitHub;
|
||||||
inherit (prev) fetchPypi;
|
inherit (prev) fetchPypi;
|
||||||
inherit (prev) fetchpatch;
|
|
||||||
inherit (prev) makeWrapper;
|
inherit (prev) makeWrapper;
|
||||||
inherit (prev) python3Packages;
|
inherit (prev) python3Packages;
|
||||||
in
|
in
|
||||||
|
@ -23,31 +22,6 @@ in
|
||||||
# freeimage is broken
|
# freeimage is broken
|
||||||
withBackends = [ "libtiff" "libjpeg" "libpng" "librsvg" "libheif" ];
|
withBackends = [ "libtiff" "libjpeg" "libpng" "librsvg" "libheif" ];
|
||||||
};
|
};
|
||||||
# don't compile the bloat
|
|
||||||
rsyslog = prev.rsyslog.override {
|
|
||||||
withMysql = false;
|
|
||||||
withJemalloc = false;
|
|
||||||
withPostgres = false;
|
|
||||||
withUuid = false;
|
|
||||||
withCurl = false;
|
|
||||||
withDbi = false;
|
|
||||||
withNetSnmp = false;
|
|
||||||
withGnutls = false;
|
|
||||||
withGcrypt = false;
|
|
||||||
withLognorm = false;
|
|
||||||
withMaxminddb = false;
|
|
||||||
withOpenssl = false;
|
|
||||||
withRelp = false;
|
|
||||||
withKsi = false;
|
|
||||||
withLogging = false;
|
|
||||||
withHadoop = false;
|
|
||||||
withRdkafka = false;
|
|
||||||
withMongo = false;
|
|
||||||
withCzmq = false;
|
|
||||||
withRabbitmq = false;
|
|
||||||
withHiredis = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
zsh-fzf-tab = prev.zsh-fzf-tab.overrideAttrs (_: rec {
|
zsh-fzf-tab = prev.zsh-fzf-tab.overrideAttrs (_: rec {
|
||||||
version = "1.1.1";
|
version = "1.1.1";
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
|
|
Loading…
Reference in a new issue