Guest User

Untitled

a guest
May 7th, 2020
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 1.59 KB | None | 0 0
  1. ;; This is an operating system configuration generated
  2. ;; by the graphical installer.
  3.  
  4. (use-modules (gnu))
  5. (use-service-modules desktop networking ssh xorg)
  6.  
  7. (operating-system
  8.   (locale "en_US.utf8")
  9.   (timezone "America/New_York")
  10.   (keyboard-layout
  11.     (keyboard-layout "us" "altgr-intl"))
  12.   (host-name "loopforward")
  13.   (users (cons* (user-account
  14.                   (name "tay")
  15.                   (comment "Taylor")
  16.                   (group "users")
  17.                   (home-directory "/home/tay")
  18.                   (supplementary-groups
  19.                     '("wheel" "netdev" "audio" "video")))
  20.                 %base-user-accounts))
  21.   (packages
  22.     (append
  23.       (list (specification->package "openbox")
  24.             (specification->package "nss-certs"))
  25.       %base-packages))
  26.   (services
  27.     (append
  28.       (list (service xfce-desktop-service-type)
  29.             (service openssh-service-type)
  30.             (set-xorg-configuration
  31.               (xorg-configuration
  32.                 (keyboard-layout keyboard-layout))))
  33.       %desktop-services))
  34.   (bootloader
  35.     (bootloader-configuration
  36.       (bootloader grub-efi-bootloader)
  37.       (target "/boot/efi")
  38.       (keyboard-layout keyboard-layout)))
  39.   (file-systems
  40.     (cons* (file-system
  41.              (mount-point "/")
  42.              (device
  43.                (uuid "56c8568d-63e2-4c53-b3b9-da807f48e50d"
  44.                      'ext4))
  45.              (type "ext4"))
  46.            (file-system
  47.              (mount-point "/boot/efi")
  48.              (device (uuid "6450-BA99" 'fat32))
  49.              (type "vfat"))
  50.            %base-file-systems)))
Add Comment
Please, Sign In to add comment