Advertisement
Guest User

Untitled

a guest
Jun 29th, 2021
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. ;; This is an operating system configuration generated
  2. ;; by the graphical installer.
  3.  
  4. (use-modules (gnu))
  5. (use-service-modules desktop networking ssh xorg)
  6.  
  7. (operating-system
  8. (locale "ru_RU.utf8")
  9. (timezone "Europe/Moscow")
  10. (keyboard-layout
  11. (keyboard-layout
  12. "ru,us"
  13. #:options
  14. '("grp:alt_shift_toggle")))
  15. (host-name "host")
  16. (users (cons* (user-account
  17. (name "user")
  18. (comment "User")
  19. (group "users")
  20. (home-directory "/home/user")
  21. (supplementary-groups
  22. '("wheel" "netdev" "audio" "video")))
  23. %base-user-accounts))
  24. (packages
  25. (append
  26. (list (specification->package "i3-wm")
  27. (specification->package "i3status")
  28. (specification->package "dmenu")
  29. (specification->package "st")
  30. (specification->package "nss-certs"))
  31. %base-packages))
  32. (services %desktop-services)
  33. (use-module guix services virtualization)
  34. (service libvirt-service-type
  35. (libvirt-configuration
  36. (unix-sock-group "libvirt")
  37. (tls-port "16555")))
  38. (bootloader
  39. (bootloader-configuration
  40. (bootloader grub-bootloader)
  41. (target "/dev/sda")
  42. (keyboard-layout keyboard-layout)))
  43. (mapped-devices
  44. (list (mapped-device
  45. (source
  46. (uuid "283581ef-3d15-46ew-62f5-6df7938bf341"))
  47. (target "cryptroot")
  48. (type luks-device-mapping))))
  49. (file-systems
  50. (cons* (file-system
  51. (mount-point "/")
  52. (device "/dev/mapper/cryptroot")
  53. (type "ext4")
  54. (dependencies mapped-devices))
  55. %base-file-systems)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement