mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
I don't know if i like this
This commit is contained in:
parent
c6a9144ffe
commit
1b62d16ddc
63 changed files with 369 additions and 294 deletions
41
nixosModules/boot/other.nix
Normal file
41
nixosModules/boot/other.nix
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
lib,
|
||||
self',
|
||||
pkgs,
|
||||
config,
|
||||
}:
|
||||
{
|
||||
options.local.bootConfig.disable = lib.mkEnableOption "";
|
||||
|
||||
config = lib.mkIf (!config.local.bootConfig.disable) {
|
||||
boot = {
|
||||
loader = {
|
||||
grub.configurationLimit = 10;
|
||||
systemd-boot = {
|
||||
configurationLimit = 10;
|
||||
enable = lib.mkDefault true;
|
||||
consoleMode = "max";
|
||||
editor = false;
|
||||
};
|
||||
|
||||
efi.canTouchEfiVariables = lib.mkDefault true;
|
||||
};
|
||||
plymouth = {
|
||||
enable = lib.mkDefault true;
|
||||
theme = "breeze";
|
||||
logo = "${self'.packages.images}/logo.png";
|
||||
};
|
||||
};
|
||||
systemd.services.efibootmgr = {
|
||||
reloadIfChanged = false;
|
||||
restartIfChanged = false;
|
||||
stopIfChanged = false;
|
||||
wantedBy = [ "default.target" ];
|
||||
serviceConfig = {
|
||||
ExecStart = "${lib.getExe' pkgs.efibootmgr "efibootmgr"} -t 0";
|
||||
Type = "oneshot";
|
||||
RemainAfterExit = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
42
nixosModules/boot/silent.nix
Normal file
42
nixosModules/boot/silent.nix
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
{ lib }:
|
||||
{
|
||||
/*
|
||||
Lots taken from here
|
||||
https://wiki.archlinux.org/title/Silent_boot
|
||||
*/
|
||||
environment.etc.issue = {
|
||||
/*
|
||||
Turns the cursor back on in the TTY
|
||||
It's the output of this commmand
|
||||
setterm -cursor on
|
||||
*/
|
||||
|
||||
text = "[?12l[?25h";
|
||||
mode = "0444";
|
||||
};
|
||||
boot = {
|
||||
kernelParams = lib.mkBefore [
|
||||
"fbcon=nodefer" # Wipes the vendor logo earlier
|
||||
"vt.global_cursor_default=0" # Stops cursor blinking while booting
|
||||
"quiet" # Less log messages
|
||||
"systemd.show_status=auto" # Only show systemd errors
|
||||
"udev.log_level=3" # Only show udev errors
|
||||
"splash" # Show splash
|
||||
];
|
||||
consoleLogLevel = 3; # Only errors
|
||||
initrd = {
|
||||
verbose = false; # Less stage1 messages
|
||||
systemd.enable = true; # Use systemd initrd
|
||||
};
|
||||
# Hide grub (if it's being used)
|
||||
loader.grub.extraConfig = ''
|
||||
GRUB_TIMEOUT_STYLE=hidden
|
||||
GRUB_HIDDEN_TIMEOUT_QUIET=true
|
||||
'';
|
||||
/*
|
||||
Not recommended
|
||||
rolling back can be a pain
|
||||
*/
|
||||
#timeout = 0;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue