zen kernel and quiet boot

This commit is contained in:
Vinzenz Schroeter 2023-09-17 15:20:45 +02:00
parent f0028ba7a7
commit 1508d9a6ac

View file

@ -1,9 +1,17 @@
{lib, ...}: { {
lib,
pkgs,
...
}: {
config = { config = {
boot.loader = { boot = {
kernelPackages = pkgs.linuxPackages_zen;
kernelParams = ["quiet" "loglevel=3"];
loader = {
systemd-boot.enable = true; systemd-boot.enable = true;
efi.canTouchEfiVariables = true; efi.canTouchEfiVariables = true;
}; };
};
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's # (the default) this is the recommended approach. When using systemd-networkd it's