34 lines
513 B
Nix
34 lines
513 B
Nix
{ 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"
|
|
];
|
|
};
|
|
}
|