diff options
author | sinanmohd <pcmsinan@gmail.com> | 2023-07-01 19:58:37 +0530 |
---|---|---|
committer | sinanmohd <pcmsinan@gmail.com> | 2023-07-01 20:02:49 +0530 |
commit | 3835443b525badb25d1586b54ef5c7c148a423be (patch) | |
tree | 525f27382a53b32802a5c8ebfc9144fd9e0b72cb /hardware | |
parent | e61f301d3a81ab4908b9ed3f71cd27c16102a2e2 (diff) |
hardware/cez: drop kernel loglevel to 3 to hide acpi errors
Diffstat (limited to 'hardware')
-rw-r--r-- | hardware/cez.nix | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/hardware/cez.nix b/hardware/cez.nix index 100f284..e0cf620 100644 --- a/hardware/cez.nix +++ b/hardware/cez.nix @@ -1,12 +1,13 @@ { config, ... }: { - # netwroking networking = { hostName = "cez"; wireless.iwd.enable = true; }; - # fde - boot.initrd.luks.reusePassphrases = true; + boot = { + initrd.luks.reusePassphrases = true; + consoleLogLevel = 3; + }; } |