29 lines
538 B
Nix
29 lines
538 B
Nix
{pkgs, ...}: {
|
|
boot = {
|
|
consoleLogLevel = 3;
|
|
initrd.verbose = false;
|
|
loader = {
|
|
systemd-boot = {
|
|
enable = true;
|
|
};
|
|
|
|
efi = {
|
|
canTouchEfiVariables = true;
|
|
efiSysMountPoint = "/boot";
|
|
};
|
|
};
|
|
initrd = {
|
|
systemd.enable = true;
|
|
};
|
|
plymouth = {
|
|
enable = true;
|
|
# themePackages = [
|
|
# (pkgs.adi1090x-plymouth-themes.override {
|
|
# selected_themes = ["circle_hud"];
|
|
# })
|
|
# ];
|
|
# theme = "circle_hud";
|
|
};
|
|
};
|
|
}
|