mirror of
https://github.com/Username404-59/Dotfiles-NixOS.git
synced 2026-07-03 21:08:08 +02:00
46 lines
954 B
Nix
46 lines
954 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
catppuccin.plymouth.enable = false;
|
|
|
|
# Bootloader.
|
|
boot = {
|
|
loader = {
|
|
grub.enable = false;
|
|
systemd-boot.enable = false;
|
|
limine.enable = true;
|
|
|
|
limine.secureBoot = {
|
|
enable = true;
|
|
autoEnrollKeys.enable = true;
|
|
};
|
|
|
|
efi.canTouchEfiVariables = true;
|
|
|
|
# 0 = Hide the OS choice for bootloaders.
|
|
# It would still be possible to open the bootloader list by pressing any key
|
|
# It just would not appear on screen unless a key is pressed
|
|
timeout = 5;
|
|
};
|
|
|
|
plymouth = {
|
|
enable = true;
|
|
theme = "owl";
|
|
themePackages = with pkgs; [
|
|
(adi1090x-plymouth-themes.override {
|
|
selected_themes = [ "owl" ];
|
|
})
|
|
];
|
|
};
|
|
|
|
# Enables "Silent boot"
|
|
consoleLogLevel = 3;
|
|
initrd.verbose = false;
|
|
kernelParams = [
|
|
"quiet"
|
|
"rd.udev.log_level=3"
|
|
"rd.systemd.show_status=auto"
|
|
];
|
|
};
|
|
}
|