From ac2c7b7036b77f356d7befb3fcbd3abbdadad46b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Sun, 19 Jul 2020 07:57:44 +0200 Subject: [PATCH] fix(mingetty): minimalize text output --- configs/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/configs/default.nix b/configs/default.nix index 24aebac..df9e76a 100644 --- a/configs/default.nix +++ b/configs/default.nix @@ -98,7 +98,7 @@ in { allowUnfree = true; packageOverrides = pkgs: { nur = import (builtins.fetchTarball - "https://github.com/nix-community/NUR/archive/master.tar.gz") { + "https://github.com/nix-community/NUR/archive/aea85375c7a82297d977904de8dd7f41baf2d59a.tar.gz") { inherit pkgs; }; writeDashBin = pkgs.writers.writeDashBin; @@ -317,5 +317,11 @@ in { ''; }; } + { + services.mingetty = { + greetingLine = lib.mkForce ""; + helpLine = lib.mkForce ""; + }; + } ]; }