summaryrefslogtreecommitdiff
path: root/hardware/cez.nix
diff options
context:
space:
mode:
authorsinanmohd <pcmsinan@gmail.com>2023-07-01 19:58:37 +0530
committersinanmohd <pcmsinan@gmail.com>2023-07-01 20:02:49 +0530
commit3f4e14fd71abc1b01913d212be055d29c940752e (patch)
tree525f27382a53b32802a5c8ebfc9144fd9e0b72cb /hardware/cez.nix
parent949130ef24f3e28f3e90f43e885902ff0b98eba2 (diff)
hardware/cez: drop kernel loglevel to 3 to hide acpi errors
Diffstat (limited to 'hardware/cez.nix')
-rw-r--r--hardware/cez.nix7
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;
+ };
}