Advertisement
Guest User

Untitled

a guest
Oct 12th, 2022
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | Software | 0 0
  1. (use-modules (gnu)
  2. (srfi srfi-1)
  3. (gnu packages linux)
  4. (gnu packages networking)
  5. (gnu packages gnome)
  6. (gnu services desktop)
  7. (gnu services virtualization)
  8. (gnu services sound))
  9. (use-service-modules desktop networking ssh xorg)
  10.  
  11. (operating-system
  12. (locale "en_DK.utf8")
  13. (timezone "Europe/Stockholm")
  14. (keyboard-layout (keyboard-layout "se"))
  15. (host-name "guixtop")
  16. (users (cons* (user-account
  17. (name "me")
  18. (comment "me")
  19. (group "users")
  20. (home-directory "/home/me")
  21. (supplementary-groups
  22. '("wheel" "netdev" "lp" "audio" "video" "kvm" "libvirt")))
  23. %base-user-accounts))
  24. (packages
  25. (append
  26. (list (specification->package "nss-certs")
  27. bluez
  28. blueman
  29. gnome-bluetooth)
  30. %base-packages))
  31. (services
  32. (append
  33. (list (service gnome-desktop-service-type)
  34. (service openssh-service-type)
  35. (service libvirt-service-type)
  36. (udev-rules-service 'pipewire-add-udev-rules pipewire-0.3)
  37. (set-xorg-configuration
  38. (xorg-configuration
  39. (keyboard-layout keyboard-layout)))
  40. (extra-special-file "/lib64/ld-linux-x86-64.so.2"
  41. (file-append glibc "/lib/ld-linux-x86-64.so.2"))
  42. (bluetooth-service #:auto-enable? #t)
  43. )
  44. (modify-services %desktop-services
  45.  
  46. (gdm-service-type config => (gdm-configuration
  47. (inherit config)
  48. (wayland? #t))))))
  49. (bootloader
  50. (bootloader-configuration
  51. (bootloader grub-efi-bootloader)
  52. (targets (list "/boot/efi"))
  53. (keyboard-layout keyboard-layout)))
  54. (file-systems
  55. (cons* (file-system
  56. (mount-point "/")
  57. (device
  58. (uuid "uuid"
  59. 'btrfs))
  60. (type "btrfs"))
  61. (file-system
  62. (mount-point "/boot/efi")
  63. (device (uuid "uuid" 'fat32))
  64. (type "vfat"))
  65. %base-file-systems)))
  66.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement