Advertisement
Guest User

Untitled

a guest
Feb 18th, 2022
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. ;; This is an operating system configuration generated
  2. ;; by the graphical installer.
  3.  
  4. (use-modules (gnu)
  5. (srfi srfi-1)
  6. (gnu services desktop)
  7. )
  8.  
  9. (use-service-modules desktop
  10. networking
  11. ssh
  12. xorg
  13. version-control
  14. )
  15.  
  16.  
  17. (use-package-modules certs gnome)
  18.  
  19. (operating-system
  20. (locale "en_GB.utf8")
  21. (timezone "Europe/London")
  22. (keyboard-layout (keyboard-layout "it"))
  23. (host-name "guixpc")
  24. (users (cons* (user-account
  25. (name "marco")
  26. (comment "Marco")
  27. (group "users")
  28. (home-directory "/home/marco")
  29. (supplementary-groups
  30. '("wheel" "netdev" "audio" "video")))
  31. %base-user-accounts))
  32. (packages
  33. (append
  34. (list
  35. (specification->package "xfce")
  36. (specification->package "sway")
  37. (specification->package "swaybg")
  38. (specification->package "swayidle")
  39. (specification->package "swaylock")
  40. (specification->package "emacs")
  41. (specification->package "htop")
  42. (specification->package "neofetch")
  43. (specification->package "git")
  44. (specification->package "nss-certs")
  45. (specification->package "wofi")
  46. (specification->package "waybar")
  47. (specification->package "foot")
  48. (specification->package "icecat")
  49. (specification->package "mako")
  50. (specification->package "swappy")
  51. (specification->package "hikari")
  52. (specification->package "cmatrix")
  53. (specification->package "tlp")
  54. )
  55. %base-packages))
  56.  
  57.  
  58.  
  59. (services (cons* (service xfce-desktop-service-type)
  60. (service openssh-service-type)
  61. (modify-services %desktop-services (delete gdm-service-type))
  62. %desktop-services))
  63. (bootloader
  64. (bootloader-configuration
  65. (bootloader grub-bootloader)
  66. (target "/dev/sda")
  67. (keyboard-layout keyboard-layout)))
  68. (swap-devices
  69. (list (uuid "df58edfc-a3f7-4caf-afd8-4ce368e4d3c1")))
  70. (file-systems
  71. (cons* (file-system
  72. (mount-point "/")
  73. (device
  74. (uuid "b2b46434-a7e7-47d8-8b4e-c173f1f328b0"
  75. 'ext4))
  76. (type "ext4"))
  77. %base-file-systems)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement