Advertisement
Guest User

Untitled

a guest
Feb 20th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. ;; This is an operating system configuration template
  2. ;; for a "desktop" setup without full-blown desktop
  3. ;; environments.
  4.  
  5. (use-modules (gnu) (gnu system nss))
  6. (use-service-modules desktop)
  7. (use-package-modules bootloaders certs ratpoison suckless wm)
  8.  
  9. (operating-system
  10. (host-name "x220")
  11. (timezone "Europe/Warsaw")
  12. (locale "en_US.utf8")
  13.  
  14. ;; Use the UEFI variant of GRUB with the EFI System
  15. ;; Partition mounted on /boot/efi.
  16. (bootloader (bootloader-configuration
  17. (bootloader grub-efi-bootloader)
  18. (target "/boot/efi")))
  19.  
  20. ;; Assume the target root file system is labelled "my-root",
  21. ;; and the EFI System Partition has UUID 1234-ABCD.
  22. (file-systems (cons* (file-system
  23. (device "rootfs")
  24. (title 'label)
  25. (mount-point "/")
  26. (type "ext4"))
  27. (file-system
  28. (device "/dev/sda1")
  29. (title 'device)
  30. (mount-point "/boot")
  31. (type "vfat"))
  32. (file-system
  33. (device "home")
  34. (title 'label)
  35. (mount-point "/home")
  36. (type "ext4"))
  37. %base-file-systems))
  38.  
  39. (users (cons (user-account
  40. (name "jayspeer")
  41. (comment "Owner and user")
  42. (group "users")
  43. (supplementary-groups '("wheel" "netdev"
  44. "audio" "video"))
  45. (home-directory "/home/jayspeer"))
  46. %base-user-accounts))
  47.  
  48. ;; Add a bunch of window managers; we can choose one at
  49. ;; the log-in screen with F1.
  50. (packages (cons* ratpoison i3-wm i3status dmenu ;window managers
  51. nss-certs ;for HTTPS access
  52. %base-packages))
  53.  
  54. ;; Use the "desktop" services, which include the X11
  55. ;; log-in service, networking with Wicd, and more.
  56. (services %desktop-services)
  57.  
  58. ;; Allow resolution of '.local' host names with mDNS.
  59. (name-service-switch %mdns-host-lookup-nss))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement