re-indent and fix spelling

This commit is contained in:
mir 2024-10-11 19:37:47 -08:00
parent 38ad21a033
commit 3a3906399d
2 changed files with 44 additions and 33 deletions

View File

@ -17,7 +17,7 @@
(openpgp-fingerprint (openpgp-fingerprint
"2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5")))) "2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5"))))
(channel (channel
(name 'michael_atlas) (name 'michal_atlas)
(url "https://git.sr.ht/~michal_atlas/guix-channel") (url "https://git.sr.ht/~michal_atlas/guix-channel")
(branch "master") (branch "master")
;;(introduction ;;(introduction
@ -26,4 +26,5 @@
;; (openpgp-fingerprint ;; (openpgp-fingerprint
;; "") ;; "")
;; )) ;; ))
)) )
)

View File

@ -29,6 +29,7 @@
(keyboard-layout (keyboard-layout "us")) (keyboard-layout (keyboard-layout "us"))
(host-name "starscream") (host-name "starscream")
;; The list of user accounts ('root' is implicit). ;; The list of user accounts ('root' is implicit).
(users (cons* (user-account (users (cons* (user-account
(name "mir") (name "mir")
@ -77,22 +78,28 @@
))) )))
(list (service gnome-desktop-service-type) (list (service gnome-desktop-service-type)
;; To configure OpenSSH, pass an 'openssh-configuration'
;; record as a second argument to 'service' below. ;; record as a second argument to 'service' below.
(service openssh-service-type) (service openssh-service-type)
(service cups-service-type) (service cups-service-type)
(set-xorg-configuration (set-xorg-configuration
(xorg-configuration (keyboard-layout keyboard-layout)))) (xorg-configuration (keyboard-layout keyboard-layout)))
)
;; This is the default list of services we ;; This is the default list of services we
;; are appending to. ;; are appending to.
%desktop-services)) ;%desktop-services ; already modified above?
))
(bootloader (bootloader-configuration (bootloader (bootloader-configuration
(bootloader grub-efi-bootloader) (bootloader grub-efi-bootloader)
(targets (list "/boot/efi")) (targets (list "/boot/efi"))
(keyboard-layout keyboard-layout))) (keyboard-layout keyboard-layout)))
(swap-devices (list (swap-space (swap-devices (list (swap-space
(target (uuid (target
"dc1220de-fbc4-4008-86d1-5c9b152cc32c"))))) ; (uuid
; "dc1220de-fbc4-4008-86d1-5c9b152cc32c")
(file-system-label "swap")
))))
;; The list of file systems that get "mounted". The unique ;; The list of file systems that get "mounted". The unique
;; file system identifiers there ("UUIDs") can be obtained ;; file system identifiers there ("UUIDs") can be obtained
@ -105,8 +112,11 @@
(type "vfat")) (type "vfat"))
(file-system (file-system
(mount-point "/") (mount-point "/")
(device (uuid (device
;"39ec24ba-7c1f-49ff-9af6-57ace91cfba5" (file-system-label "guix-root")
"25b6c953-f92e-47df-baf0-6a80bccba45f" ;(uuid
'ext4)) ; "25b6c953-f92e-47df-baf0-6a80bccba45f"
; 'ext4)
)
(type "ext4")) %base-file-systems))) (type "ext4")) %base-file-systems)))