chore(kernel): add systemd logs by default
Note: We should probably put all manner of debug options behind a single or a few nix options used across modules
This commit is contained in:
parent
1a035e8c7c
commit
7e2a3488ef
1 changed files with 7 additions and 1 deletions
|
@ -10,8 +10,14 @@
|
|||
enableContainers = false;
|
||||
initrd.systemd.enable = true;
|
||||
initrd.compressor = "zstd";
|
||||
|
||||
# FIXME: Add debug/devel option to switch default kernel params
|
||||
kernelParams = [
|
||||
"console=ttyS0"
|
||||
# "quiet"
|
||||
"console=tty1"
|
||||
"console=ttyS0,38400"
|
||||
"systemd.log_level=info"
|
||||
"systemd.log_target=console"
|
||||
];
|
||||
loader.efi.canTouchEfiVariables = true;
|
||||
loader.grub.enable = false;
|
||||
|
|
Loading…
Reference in a new issue