mirror of
https://github.com/callumio/nixfiles.git
synced 2026-08-06 20:49:17 +01:00
move aspects into folder
This commit is contained in:
parent
bcf0553529
commit
8229eb8fba
8 changed files with 2 additions and 2 deletions
24
modules/aspects/boot.nix
Normal file
24
modules/aspects/boot.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{ ... }:
|
||||
{
|
||||
flake.nixosModules.boot = {
|
||||
boot = {
|
||||
loader = {
|
||||
efi.canTouchEfiVariables = true;
|
||||
systemd-boot.enable = true;
|
||||
};
|
||||
plymouth.enable = false;
|
||||
# consoleLogLevel = 0;
|
||||
# initrd.verbose = false;
|
||||
# kernelParams = [
|
||||
# "quiet"
|
||||
# "splash"
|
||||
# "boot.shell_on_fail"
|
||||
# "loglevel=3"
|
||||
# "rd.systemd.show_status=false"
|
||||
# "rd.udev.log_level=3"
|
||||
# "udev.log_priority=3"
|
||||
# ];
|
||||
};
|
||||
system.stateVersion = "24.05";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue