Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ;; This is an operating system configuration generated
- ;; by the graphical installer.
- (use-modules (gnu))
- (use-service-modules desktop networking ssh xorg)
- (operating-system
- (locale "en_US.utf8")
- (timezone "America/New_York")
- (keyboard-layout
- (keyboard-layout "us" "altgr-intl"))
- (host-name "loopforward")
- (users (cons* (user-account
- (name "tay")
- (comment "Taylor")
- (group "users")
- (home-directory "/home/tay")
- (supplementary-groups
- '("wheel" "netdev" "audio" "video")))
- %base-user-accounts))
- (packages
- (append
- (list (specification->package "openbox")
- (specification->package "nss-certs"))
- %base-packages))
- (services
- (append
- (list (service xfce-desktop-service-type)
- (service openssh-service-type)
- (set-xorg-configuration
- (xorg-configuration
- (keyboard-layout keyboard-layout))))
- %desktop-services))
- (bootloader
- (bootloader-configuration
- (bootloader grub-efi-bootloader)
- (target "/boot/efi")
- (keyboard-layout keyboard-layout)))
- (file-systems
- (cons* (file-system
- (mount-point "/")
- (device
- (uuid "56c8568d-63e2-4c53-b3b9-da807f48e50d"
- 'ext4))
- (type "ext4"))
- (file-system
- (mount-point "/boot/efi")
- (device (uuid "6450-BA99" 'fat32))
- (type "vfat"))
- %base-file-systems)))
Add Comment
Please, Sign In to add comment