Advertisement
Guest User

Untitled

a guest
Nov 21st, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. boot.initrd.luks.devices = [
  2. {
  3. name = "root";
  4. device = "/dev/disk/by-uuid/9a891682-3147-493c-b36d-a0ffe454aeec";
  5. preLVM = true;
  6. allowDiscards = true;
  7. }
  8. ];
  9.  
  10. boot.loader = {
  11. grub.enable = true;
  12. grub.version = 2;
  13. grub.efiSupport = true;
  14. grub.device = "nodev";
  15. grub.useOSProber = true;
  16. grub.enableCryptodisk = true;
  17. grub.mirroredBoots = [
  18. {
  19. path = "/boot/efi";
  20. efiSysMountPoint = "/boot/efi";
  21. devices = [ "nodev" ];
  22. }
  23. ];
  24. efi.canTouchEfiVariables = true;
  25. efi.efiSysMountPoint = "/boot/efi";
  26. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement