nixos-config/system/set-boot.nix

14 lines
378 B
Nix
Raw Normal View History

2024-08-04 19:06:02 +02:00
{ ... }:
2024-07-30 22:56:44 +02:00
{
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.plymouth.enable = true;
boot.plymouth.theme = "bgrt";
boot.initrd.verbose = false;
boot.consoleLogLevel = 0;
2024-08-08 12:16:21 +02:00
boot.kernelParams = [ "quiet" "udev.log_level=0" "amd_pstate=guided" ];
2024-08-01 15:20:39 +02:00
boot.extraModprobeConfig = ''
options amdgpu ppfeaturemask=0xFFF7FFFF
'';
2024-07-30 22:56:44 +02:00
}