Elektrine lite

← Feed

@hell@defcon.social

Post #1403725

2026-03-31 16:05 UTC

@Saorsa dunno. what little elisp I've worked with so far has been dope :) would you prefer square brackets^^?

Replies (1)

  • @Saorsa@neondystopia.world 2026-03-31 17:18

    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")))))

    Open ##1475638