Advertisement
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
- pm
- ssh
- xorg)
- (operating-system
- (locale "en_US.utf8")
- (timezone "America/Los_Angeles")
- (keyboard-layout (keyboard-layout "us"))
- (host-name "lilly")
- (users (cons* (user-account
- (name "rose")
- (comment "Rose")
- (group "users")
- (home-directory "/home/rose")
- (supplementary-groups
- '("wheel" "netdev" "audio" "video")))
- %base-user-accounts))
- (packages
- (append
- (list (specification->package "nss-certs"))
- %base-packages))
- (services
- (append
- (list (service xfce-desktop-service-type)
- (set-xorg-configuration
- (xorg-configuration
- (keyboard-layout keyboard-layout)))
- (service tlp-service-type))
- (modify-services %desktop-services
- (elogind-service-type config =>
- (elogind-configuration
- (inherit config)
- (handle-lid-switch-external-power 'suspend))))))
- (bootloader
- (bootloader-configuration
- (bootloader
- (bootloader
- (inherit grub-bootloader)
- (installer #~(const #t))))
- (keyboard-layout keyboard-layout)))
- (swap-devices
- (list (swap-space
- (target (uuid "cbd91e9a-4a40-4e15-b897-db559b942237"))
- (discard? #t))))
- (file-systems
- (cons* (file-system
- (mount-point "/")
- (device
- (uuid "d6bdb496-620f-4e91-ae86-cfd6881a8d2f"
- 'ext4))
- (type "ext4"))
- %base-file-systems)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement