re-indent and fix spelling
This commit is contained in:
parent
38ad21a033
commit
3a3906399d
@ -17,7 +17,7 @@
|
||||
(openpgp-fingerprint
|
||||
"2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5"))))
|
||||
(channel
|
||||
(name 'michael_atlas)
|
||||
(name 'michal_atlas)
|
||||
(url "https://git.sr.ht/~michal_atlas/guix-channel")
|
||||
(branch "master")
|
||||
;;(introduction
|
||||
@ -26,4 +26,5 @@
|
||||
;; (openpgp-fingerprint
|
||||
;; "")
|
||||
;; ))
|
||||
))
|
||||
)
|
||||
)
|
||||
|
72
system.scm
72
system.scm
@ -29,14 +29,15 @@
|
||||
(keyboard-layout (keyboard-layout "us"))
|
||||
(host-name "starscream")
|
||||
|
||||
|
||||
;; The list of user accounts ('root' is implicit).
|
||||
(users (cons* (user-account
|
||||
(name "mir")
|
||||
(comment "Miranda Marquez")
|
||||
(group "users")
|
||||
(home-directory "/home/mir")
|
||||
(supplementary-groups '("wheel" "netdev" "audio" "video")))
|
||||
%base-user-accounts))
|
||||
(name "mir")
|
||||
(comment "Miranda Marquez")
|
||||
(group "users")
|
||||
(home-directory "/home/mir")
|
||||
(supplementary-groups '("wheel" "netdev" "audio" "video")))
|
||||
%base-user-accounts))
|
||||
|
||||
;; Packages installed system-wide. Users can also install packages
|
||||
;; under their own account: use 'guix search KEYWORD' to search
|
||||
@ -77,36 +78,45 @@
|
||||
)))
|
||||
(list (service gnome-desktop-service-type)
|
||||
|
||||
;; record as a second argument to 'service' below.
|
||||
(service openssh-service-type)
|
||||
(service cups-service-type)
|
||||
(set-xorg-configuration
|
||||
(xorg-configuration (keyboard-layout keyboard-layout))))
|
||||
;; To configure OpenSSH, pass an 'openssh-configuration'
|
||||
;; record as a second argument to 'service' below.
|
||||
(service openssh-service-type)
|
||||
(service cups-service-type)
|
||||
(set-xorg-configuration
|
||||
(xorg-configuration (keyboard-layout keyboard-layout)))
|
||||
|
||||
;; This is the default list of services we
|
||||
;; are appending to.
|
||||
%desktop-services))
|
||||
)
|
||||
;; This is the default list of services we
|
||||
;; are appending to.
|
||||
;%desktop-services ; already modified above?
|
||||
))
|
||||
(bootloader (bootloader-configuration
|
||||
(bootloader grub-efi-bootloader)
|
||||
(targets (list "/boot/efi"))
|
||||
(keyboard-layout keyboard-layout)))
|
||||
(bootloader grub-efi-bootloader)
|
||||
(targets (list "/boot/efi"))
|
||||
(keyboard-layout keyboard-layout)))
|
||||
(swap-devices (list (swap-space
|
||||
(target (uuid
|
||||
"dc1220de-fbc4-4008-86d1-5c9b152cc32c")))))
|
||||
(target
|
||||
; (uuid
|
||||
; "dc1220de-fbc4-4008-86d1-5c9b152cc32c")
|
||||
(file-system-label "swap")
|
||||
))))
|
||||
|
||||
;; The list of file systems that get "mounted". The unique
|
||||
;; file system identifiers there ("UUIDs") can be obtained
|
||||
;; by running 'blkid' in a terminal.
|
||||
(file-systems (cons* (file-system
|
||||
(mount-point "/boot/efi")
|
||||
(device (uuid ;"67E3-17ED"
|
||||
"FBB5-2030"
|
||||
'fat32))
|
||||
(type "vfat"))
|
||||
(file-system
|
||||
(mount-point "/")
|
||||
(device (uuid
|
||||
;"39ec24ba-7c1f-49ff-9af6-57ace91cfba5"
|
||||
"25b6c953-f92e-47df-baf0-6a80bccba45f"
|
||||
'ext4))
|
||||
(type "ext4")) %base-file-systems)))
|
||||
(mount-point "/boot/efi")
|
||||
(device (uuid ;"67E3-17ED"
|
||||
"FBB5-2030"
|
||||
'fat32))
|
||||
(type "vfat"))
|
||||
(file-system
|
||||
(mount-point "/")
|
||||
(device
|
||||
(file-system-label "guix-root")
|
||||
;(uuid
|
||||
; "25b6c953-f92e-47df-baf0-6a80bccba45f"
|
||||
; 'ext4)
|
||||
)
|
||||
(type "ext4")) %base-file-systems)))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user