Advertisement
Guest User

Untitled

a guest
Dec 11th, 2023
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.14 KB | None | 0 0
  1. ;; This is an operating system configuration generated
  2. ;; by the graphical installer.
  3. ;;
  4. ;; Once installation is complete, you can learn and modify
  5. ;; this file to tweak the system configuration, and pass it
  6. ;; to the 'guix system reconfigure' command to effect your
  7. ;; changes.
  8.  
  9.  
  10. ;; Indicate which modules to import to access the variables
  11. ;; used in this configuration.
  12. (use-modules (gnu) (gnu system) (gnu services virtualization) (gnu services spice))
  13. ;;(use-modules (gnu) (gnu system) (gnu services virtualization))
  14. (use-service-modules cups desktop networking ssh xorg spice)
  15.  
  16. (operating-system
  17. (locale "en_US.utf8")
  18. (timezone "Europe/Berlin")
  19. (keyboard-layout (keyboard-layout "de" "nodeadkeys"))
  20. (host-name "guixsd-latest")
  21.  
  22. ;; The list of user accounts ('root' is implicit).
  23. (users (cons* (user-account
  24. (name "support")
  25. (comment "Support")
  26. (group "users")
  27. (home-directory "/home/support")
  28. (supplementary-groups '("wheel" "netdev" "audio" "video")))
  29. %base-user-accounts))
  30.  
  31. ;; Packages installed system-wide. Users can also install packages
  32. ;; under their own account: use 'guix search KEYWORD' to search
  33. ;; for packages and 'guix install PACKAGE' to install a package.
  34. (packages (append (list (specification->package "nss-certs"))
  35. %base-packages))
  36.  
  37. ;; Below is the list of system services. To search for available
  38. ;; services, run 'guix system search KEYWORD' in a terminal.
  39. (services
  40. (append (list (service xfce-desktop-service-type)
  41.  
  42. ;; To configure OpenSSH, pass an 'openssh-configuration'
  43. ;; record as a second argument to 'service' below.
  44. (service qemu-guest-agent-service-type)
  45. (service openssh-service-type)
  46. (service cups-service-type)
  47. (set-xorg-configuration
  48. (xorg-configuration (keyboard-layout keyboard-layout))))
  49.  
  50. ;; This is the default list of services we
  51. ;; are appending to.
  52. %desktop-services))
  53. (bootloader (bootloader-configuration
  54. (bootloader grub-efi-bootloader)
  55. (targets (list "/boot/efi"))
  56. (keyboard-layout keyboard-layout)))
  57. (swap-devices (list (swap-space
  58. (target (uuid
  59. "d978bef9-4e89-42b4-967a-9c87169062c0")))))
  60.  
  61. ;; The list of file systems that get "mounted". The unique
  62. ;; file system identifiers there ("UUIDs") can be obtained
  63. ;; by running 'blkid' in a terminal.
  64. (file-systems (cons* (file-system
  65. (mount-point "/boot/efi")
  66. (device (uuid "AC6E-1F16"
  67. 'fat16))
  68. (type "vfat"))
  69. (file-system
  70. (mount-point "/")
  71. (device (uuid
  72. "f718b3cf-bb62-46a5-b6c3-3a8d381d8aa2"
  73. 'ext4))
  74. (type "ext4")) %base-file-systems)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement