Guest User

Untitled

a guest
Jun 30th, 2020
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.18 KB | None | 0 0
  1. ;; This is an operating system configuration generated
  2. ;; by the graphical installer.
  3.  
  4. (use-modules (gnu)
  5. (guix download)
  6. (guix packages))
  7.  
  8. (use-service-modules desktop networking ssh xorg)
  9. (define %nitrokey-udev-rule
  10. (file->udev-rule
  11. "41-nitrokey.rules"
  12. (let ((version "21753f0df1739f15f961d86a054bd75e66c86142"))
  13. (origin
  14. (method url-fetch)
  15. (uri (string-append "https://raw.githubusercontent.com/Nitrokey/"
  16. "libnitrokey/" version "/41-nitrokey.rules"))
  17. (sha256
  18. (base64 "A03g44bS4OTgBvg/IEeX/v49t4CZSaeWdUy0ZDjhig0="))))))
  19.  
  20. (operating-system
  21. (locale "en_US.utf8")
  22. (timezone "America/New_York")
  23. (keyboard-layout (keyboard-layout "us"))
  24. (host-name "lystra")
  25. (users (cons* (user-account
  26. (name "timothy")
  27. (comment "Tim Magee")
  28. (group "users")
  29. (home-directory "/home/timothy")
  30. (supplementary-groups
  31. '("wheel" "netdev" "audio" "video")))
  32. %base-user-accounts))
  33. (packages
  34. (append
  35. (list (specification->package "i3-wm")
  36. (specification->package "i3status")
  37. (specification->package "dmenu")
  38. (specification->package "st")
  39. (specification->package "nss-certs"))
  40. %base-packages))
  41.  
  42. (services (append (list %nitrokey-udev-rule
  43. %desktop-services)))
  44.  
  45. (bootloader
  46. (bootloader-configuration
  47. (bootloader grub-bootloader)
  48. (target "/dev/sda")
  49. (keyboard-layout keyboard-layout)))
  50. (mapped-devices
  51. (list (mapped-device
  52. (source
  53. (uuid "cae8fa99-173d-47c3-81ec-b05369546872"))
  54. (target "crypthome")
  55. (type luks-device-mapping))))
  56. (file-systems
  57. (cons* (file-system
  58. (mount-point "/")
  59. (device
  60. (uuid "3ef21700-c67a-4023-88f7-e04f4da84e8d"
  61. 'ext4))
  62. (type "ext4"))
  63. (file-system
  64. (mount-point "/home")
  65. (device "/dev/mapper/crypthome")
  66. (type "ext4")
  67. (dependencies mapped-devices))
  68. %base-file-systems)))
Add Comment
Please, Sign In to add comment