Advertisement
Guest User

config.scm

a guest
Nov 28th, 2015
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. ;; This is an operating system configuration template
  2. ;; for a "desktop" setup with X11.
  3.  
  4. (use-modules (gnu) (gnu system nss))
  5. (use-service-modules desktop)
  6. (use-package-modules xfce ratpoison certs)
  7.  
  8. (operating-system
  9. (host-name "d")
  10. (timezone "Europe/Moscw")
  11. (locale "en_US.UTF-8")
  12.  
  13. ;; Assuming /dev/sdX is the target hard disk, and "root" is
  14. ;; the label of the target root file system.
  15. (bootloader (grub-configuration (device "/dev/sda")))
  16. (file-systems (cons (file-system
  17. (device "root")
  18. (title 'label)
  19. (mount-point "/")
  20. (type "ext4"))
  21. %base-file-systems))
  22.  
  23. (users (cons (user-account
  24. (name "y")
  25. (comment "")
  26. (group "users")
  27. (supplementary-groups '("wheel" "netdev"
  28. "audio" "video"))
  29. (home-directory "/home/y"))
  30. %base-user-accounts))
  31.  
  32. ;; Add Xfce and Ratpoison; that allows us to choose
  33. ;; sessions using either of these at the log-in screen.
  34. (packages (cons* xfce ratpoison ;desktop environments
  35. nss-certs ;for HTTPS access
  36. %base-packages))
  37.  
  38. ;; Use the "desktop" services, which include the X11
  39. ;; log-in service, networking with Wicd, and more.
  40. (services %desktop-services)
  41.  
  42. ;; Allow resolution of '.local' host names with mDNS.
  43. (name-service-switch %mdns-host-lookup-nss))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement