renamed files, boot splash

This commit is contained in:
randogoth 2026-02-11 09:30:19 +02:00
parent bd9bbd152b
commit 018a036601
5 changed files with 36 additions and 20 deletions

34
modules/system/boot.nix Normal file
View file

@ -0,0 +1,34 @@
{ 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"
];
};
}