style: fix identation
parent
5f5f790463
commit
d58032350b
27
buer.scm
27
buer.scm
|
@ -60,10 +60,10 @@
|
||||||
|
|
||||||
(kernel linux-libre-6.4)
|
(kernel linux-libre-6.4)
|
||||||
(kernel-arguments
|
(kernel-arguments
|
||||||
'("modprobe.blacklist=usbmouse,usbkbd"
|
(list "modprobe.blacklist=usbmouse,usbkbd"
|
||||||
"thinkpad_acpi.fan_control=1"
|
"thinkpad_acpi.fan_control=1"
|
||||||
"loglevel=5"
|
"loglevel=5"
|
||||||
"quiet"))
|
"quiet"))
|
||||||
|
|
||||||
(file-systems
|
(file-systems
|
||||||
(cons* (file-system
|
(cons* (file-system
|
||||||
|
@ -172,7 +172,8 @@
|
||||||
|
|
||||||
#|Mcron service|#
|
#|Mcron service|#
|
||||||
(simple-service 'mcron-jobs mcron-service-type
|
(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|#
|
#|Device management services|#
|
||||||
(service udev-service-type
|
(service udev-service-type
|
||||||
|
@ -187,8 +188,9 @@
|
||||||
(service static-networking-service-type
|
(service static-networking-service-type
|
||||||
(list (static-networking
|
(list (static-networking
|
||||||
(addresses
|
(addresses
|
||||||
(list (network-address (device "lo")
|
(list (network-address
|
||||||
(value "127.0.0.1/8"))))
|
(device "lo")
|
||||||
|
(value "127.0.0.1/8"))))
|
||||||
(provision '(loopback)))))
|
(provision '(loopback)))))
|
||||||
(service wpa-supplicant-service-type
|
(service wpa-supplicant-service-type
|
||||||
(wpa-supplicant-configuration
|
(wpa-supplicant-configuration
|
||||||
|
@ -201,8 +203,8 @@
|
||||||
|
|
||||||
#|Thinkfan services|#
|
#|Thinkfan services|#
|
||||||
(simple-service 'thinkfan-config etc-service-type
|
(simple-service 'thinkfan-config etc-service-type
|
||||||
`(("modprobe.d/thinkfan.conf" ,file:thinkfan-modprobe-config)
|
`(("modprobe.d/thinkfan.conf" ,file:thinkfan-modprobe-config)
|
||||||
("thinkfan.conf" ,file:thinkfan-config)))
|
("thinkfan.conf" ,file:thinkfan-config)))
|
||||||
(service thinkfan-service-type
|
(service thinkfan-service-type
|
||||||
(thinkfan-configuration
|
(thinkfan-configuration
|
||||||
(config-file file:thinkfan-config)
|
(config-file file:thinkfan-config)
|
||||||
|
@ -210,12 +212,12 @@
|
||||||
|
|
||||||
#|Doas config service|#
|
#|Doas config service|#
|
||||||
(simple-service 'doas-config etc-service-type
|
(simple-service 'doas-config etc-service-type
|
||||||
`(("doas.conf" ,file:doas-config)))
|
`(("doas.conf" ,file:doas-config)))
|
||||||
|
|
||||||
#|Special file services|#
|
#|Special file services|#
|
||||||
(service special-files-service-type
|
(service special-files-service-type
|
||||||
`(("/bin/sh" ,(file-append dash "/bin/dash"))
|
`(("/bin/sh" ,(file-append dash "/bin/dash"))
|
||||||
("/usr/bin/env" ,(file-append coreutils "/bin/env"))))
|
("/usr/bin/env" ,(file-append coreutils "/bin/env"))))
|
||||||
|
|
||||||
#|Miscellaneous services|#
|
#|Miscellaneous services|#
|
||||||
(service urandom-seed-service-type)
|
(service urandom-seed-service-type)
|
||||||
|
@ -225,4 +227,3 @@
|
||||||
(sysctl (file-append procps "/sbin/sysctl"))
|
(sysctl (file-append procps "/sbin/sysctl"))
|
||||||
(settings '(("fs.protected_hardlinks" . "1")
|
(settings '(("fs.protected_hardlinks" . "1")
|
||||||
("fs.protected_symlinks" . "1"))))))))
|
("fs.protected_symlinks" . "1"))))))))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue