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,14 +29,15 @@
(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")
(comment "Miranda Marquez") (comment "Miranda Marquez")
(group "users") (group "users")
(home-directory "/home/mir") (home-directory "/home/mir")
(supplementary-groups '("wheel" "netdev" "audio" "video"))) (supplementary-groups '("wheel" "netdev" "audio" "video")))
%base-user-accounts)) %base-user-accounts))
;; Packages installed system-wide. Users can also install packages ;; Packages installed system-wide. Users can also install packages
;; under their own account: use 'guix search KEYWORD' to search ;; under their own account: use 'guix search KEYWORD' to search
@ -77,36 +78,45 @@
))) )))
(list (service gnome-desktop-service-type) (list (service gnome-desktop-service-type)
;; record as a second argument to 'service' below. ;; To configure OpenSSH, pass an 'openssh-configuration'
(service openssh-service-type) ;; record as a second argument to 'service' below.
(service cups-service-type) (service openssh-service-type)
(set-xorg-configuration (service cups-service-type)
(xorg-configuration (keyboard-layout keyboard-layout)))) (set-xorg-configuration
(xorg-configuration (keyboard-layout keyboard-layout)))
;; This is the default list of services we )
;; are appending to. ;; This is the default list of services we
%desktop-services)) ;; are appending to.
;%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
;; by running 'blkid' in a terminal. ;; by running 'blkid' in a terminal.
(file-systems (cons* (file-system (file-systems (cons* (file-system
(mount-point "/boot/efi") (mount-point "/boot/efi")
(device (uuid ;"67E3-17ED" (device (uuid ;"67E3-17ED"
"FBB5-2030" "FBB5-2030"
'fat32)) 'fat32))
(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"
(type "ext4")) %base-file-systems))) ; 'ext4)
)
(type "ext4")) %base-file-systems)))