Post #1475638
2026-03-31 17:18 UTC
Haha, suppose it is less the brackets themselves than how frequently they're used. Here's an example from a scheme config file I've been playing around with. Found that brackets and nesting end up making it more difficult to read and change.
(services
(append (list (service plasma-desktop-service-type)
;; To configure OpenSSH, pass an 'openssh-configuration'
;; record as a second argument to 'service' below.
(service openssh-service-type)
(service tor-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))
(bootloader (bootloader-configuration
(bootloader grub-efi-bootloader)
(targets (list "/boot/efi"))
(keyboard-layout keyboard-layout)))
(swap-devices (list (swap-space
(target (uuid
"SwapID")))))
Replies (1)
-
@hell@defcon.social 2026-04-01 11:50
@Saorsa fair