From d58032350ba128ef3b751d64922c025d2704c7ec Mon Sep 17 00:00:00 2001 From: anemofilia Date: Tue, 8 Aug 2023 15:27:49 -0300 Subject: [PATCH] style: fix identation --- buer.scm | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/buer.scm b/buer.scm index 4dbc79f..5053e6b 100644 --- a/buer.scm +++ b/buer.scm @@ -60,10 +60,10 @@ (kernel linux-libre-6.4) (kernel-arguments - '("modprobe.blacklist=usbmouse,usbkbd" - "thinkpad_acpi.fan_control=1" - "loglevel=5" - "quiet")) + (list "modprobe.blacklist=usbmouse,usbkbd" + "thinkpad_acpi.fan_control=1" + "loglevel=5" + "quiet")) (file-systems (cons* (file-system @@ -172,7 +172,8 @@ #|Mcron service|# (simple-service 'mcron-jobs mcron-service-type - (list #~(job "5 0 * * *" "guix gc --optimize -F 5G"))) + (list #~(job "5 0 * * *" + "guix gc --optimize -F 5G"))) #|Device management services|# (service udev-service-type @@ -187,8 +188,9 @@ (service static-networking-service-type (list (static-networking (addresses - (list (network-address (device "lo") - (value "127.0.0.1/8")))) + (list (network-address + (device "lo") + (value "127.0.0.1/8")))) (provision '(loopback))))) (service wpa-supplicant-service-type (wpa-supplicant-configuration @@ -201,8 +203,8 @@ #|Thinkfan services|# (simple-service 'thinkfan-config etc-service-type - `(("modprobe.d/thinkfan.conf" ,file:thinkfan-modprobe-config) - ("thinkfan.conf" ,file:thinkfan-config))) + `(("modprobe.d/thinkfan.conf" ,file:thinkfan-modprobe-config) + ("thinkfan.conf" ,file:thinkfan-config))) (service thinkfan-service-type (thinkfan-configuration (config-file file:thinkfan-config) @@ -210,12 +212,12 @@ #|Doas config service|# (simple-service 'doas-config etc-service-type - `(("doas.conf" ,file:doas-config))) + `(("doas.conf" ,file:doas-config))) #|Special file services|# (service special-files-service-type - `(("/bin/sh" ,(file-append dash "/bin/dash")) - ("/usr/bin/env" ,(file-append coreutils "/bin/env")))) + `(("/bin/sh" ,(file-append dash "/bin/dash")) + ("/usr/bin/env" ,(file-append coreutils "/bin/env")))) #|Miscellaneous services|# (service urandom-seed-service-type) @@ -225,4 +227,3 @@ (sysctl (file-append procps "/sbin/sysctl")) (settings '(("fs.protected_hardlinks" . "1") ("fs.protected_symlinks" . "1")))))))) -