From f0dab16d385b1764c288697a7c3dd2e0a8252612 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Sun, 31 Dec 2023 14:31:01 +0100 Subject: [PATCH] (more) quiet boot on shodan --- nixos/hosts/shodan/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/hosts/shodan/configuration.nix b/nixos/hosts/shodan/configuration.nix index ca39741..96afd6a 100644 --- a/nixos/hosts/shodan/configuration.nix +++ b/nixos/hosts/shodan/configuration.nix @@ -244,6 +244,9 @@ boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.configurationLimit = 3; boot.loader.efi.canTouchEfiVariables = true; + boot.consoleLogLevel = 0; + boot.kernelParams = ["quiet" "udev.log_priority=0"]; + boot.plymouth.enable = true; # https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion system.stateVersion = "unstable";