nanuqsaurus/modules/system/boot.nix

35 lines
513 B
Nix
Raw Permalink Normal View History

2026-02-11 09:30:19 +02:00
{ lib, ... }:
{
boot = {
supportedFilesystems = [
"btrfs"
"ext4"
"vfat"
"xfs"
];
loader = {
systemd-boot = {
enable = true;
configurationLimit = lib.mkDefault 10;
};
efi.canTouchEfiVariables = true;
};
plymouth = {
enable = true;
};
consoleLogLevel = 3;
initrd.verbose = false;
kernelParams = [
"quiet"
"splash"
"boot.shell_on_fail"
"udev.log_priority=3"
"rd.systemd.show_status=auto"
];
};
}