nixos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

default.nix (558B)


      1 {pkgs, ...}: {
      2 	boot.loader.limine.enable = true;
      3 	boot.loader.limine.efiInstallAsRemovable = true;
      4 	boot.loader.limine.biosSupport = true;
      5 	boot.loader.limine.biosDevice = "/dev/sda";
      6 	boot.loader.limine.maxGenerations = 4;
      7 	boot.kernelPackages = pkgs.linuxPackages_latest;
      8 
      9 	boot.blacklistedKernelModules = ["esp4" "esp6" "rxrpc"];
     10 	boot.extraModprobeConfig =
     11 		builtins.concatStringsSep "\n" [
     12 			"install esp4 /run/current-system/sw/bin/false"
     13 			"install esp6 /run/current-system/sw/bin/false"
     14 			"install rxrpc /run/current-system/sw/bin/false"
     15 		];
     16 }