Advertisement
Guest User

Untitled

a guest
Jun 29th, 2018
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. (mapped-devices (list (mapped-device
  2. (source "/dev/sda2")
  3. (type luks-device-mapping)
  4. (target "root"))))
  5.  
  6. (bootloader (bootloader-configuration
  7. (bootloader grub-bootloader)
  8. (target "/dev/sda")))
  9.  
  10. (file-systems (cons* (file-system
  11. (device "root")
  12. (mount-point "/")
  13. (type "ext4")
  14. (dependencies mapped-devices))
  15. (file-system
  16. (device "/dev/sda1")
  17. (mount-point "/boot")
  18. (type "vfat"))
  19. %base-file-systems))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement