diff --git a/config/nixos/core/boot.nix b/config/nixos/core/boot.nix index 3ec0598..3615eb8 100644 --- a/config/nixos/core/boot.nix +++ b/config/nixos/core/boot.nix @@ -1,4 +1,4 @@ -_: { +{pkgs, ...}: { boot = { loader = { timeout = 0; @@ -23,12 +23,10 @@ _: { kernelParams = [ "quiet" - "splash" - "boot.shell_on_fail" - "loglevel=3" - "rd.systemd.show_status=false" + "systemd.show_status=auto" "rd.udev.log_level=3" - "udev.log_priority=3" ]; + + kernelPackages = pkgs.linuxPackages_latest; }; }