style: fix identation
parent
5f5f790463
commit
d58032350b
27
buer.scm
27
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"))))))))
|
||||
|
||||
|
|
Loading…
Reference in New Issue