Changeset 3a705ab in dotfiles
- Timestamp:
- Sep 17, 2022, 9:39:03 PM (2 years ago)
- Branches:
- master
- Children:
- 43feba7
- Parents:
- 020747f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
guix/config.scm
r020747f r3a705ab 1 ;; -*- geiser-scheme-implementation: guile -*- 2 1 3 (use-modules (gnu) 2 ( srfi srfi-1)3 ( guix packages))4 (gnu packages) 5 (srfi srfi-1)) 4 6 5 7 (use-service-modules … … 72 74 (plain-file "thinkfan.conf" 73 75 "\ 74 hwmon /sys/devices/platform/thinkpad_hwmon/hwmon/hwmon5/temp2_input 75 hwmon /sys/devices/platform/thinkpad_hwmon/hwmon/hwmon5/temp5_input 76 hwmon /sys/devices/platform/thinkpad_hwmon/hwmon/hwmon5/temp1_input 77 hwmon /sys/devices/platform/thinkpad_hwmon/hwmon/hwmon5/temp4_input 78 hwmon /sys/devices/platform/thinkpad_hwmon/hwmon/hwmon5/temp7_input 76 hwmon /sys/devices/platform/thinkpad_hwmon/hwmon/hwmon4/temp3_input 77 hwmon /sys/devices/platform/thinkpad_hwmon/hwmon/hwmon4/temp5_input 78 hwmon /sys/devices/platform/thinkpad_hwmon/hwmon/hwmon4/temp1_input 79 hwmon /sys/devices/platform/thinkpad_hwmon/hwmon/hwmon4/temp4_input 80 hwmon /sys/devices/platform/thinkpad_hwmon/hwmon/hwmon4/temp6_input 81 hwmon /sys/devices/platform/thinkpad_hwmon/hwmon/hwmon4/temp7_input 82 hwmon /sys/devices/platform/thinkpad_hwmon/hwmon/hwmon4/temp8_input 79 83 hwmon /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/hwmon/hwmon1/temp1_input 80 84 hwmon /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/hwmon/hwmon2/temp1_input 81 hwmon /sys/devices/platform/coretemp.0/hwmon/hwmon6/temp3_input82 hwmon /sys/devices/platform/coretemp.0/hwmon/hwmon6/temp2_input85 # hwmon /sys/devices/platform/coretemp.0/hwmon/hwmon6/temp3_input 86 # hwmon /sys/devices/platform/coretemp.0/hwmon/hwmon6/temp2_input 83 87 hwmon /sys/devices/virtual/thermal/thermal_zone0/hwmon0/temp1_input 84 88 hwmon /sys/devices/virtual/thermal/thermal_zone0/hwmon0/temp2_input … … 118 122 '("grp:shifts_toggle" 119 123 "caps:ctrl_modifier"))) 120 (kernel linux-libre-5.1 8)121 (kernel-loadable-modules '())124 (kernel linux-libre-5.19) 125 ;; (kernel-loadable-modules '()) 122 126 (kernel-arguments 123 127 '("consoleblank=0" 124 "processor.max_cstate=3" ; Disable power savings125 "intel_idle.max_cstate=0" ; (cstate 3-4 provides126 ; high freq cpu noice)128 ;; "processor.max_cstate=3" ; Disable power savings 129 ;; "intel_idle.max_cstate=0" ; (cstate 3-4 provides 130 ;; ; high freq cpu noice) 127 131 "vblank_mode=0" 128 132 ;;"vm.swappiness=5" … … 131 135 "acpi_osi=Linux" 132 136 "i915.modeset=1" 133 "i915.enable_dc=0"134 "i915.enable_psr=0"137 ;; "i915.enable_dc=0" 138 ;; "i915.enable_psr=0" 135 139 "rootfstype=ext4" 136 140 "KVM" … … 156 160 specification->package 157 161 '("xterm" 162 "xinit" 163 "xorg-server" 158 164 "font-gnu-unifont" 159 165 "font-gnu-freefont" … … 183 189 "gst-plugins-ugly" 184 190 "gst-libav" 185 "intel-vaapi-driver-g45-h264"191 ;; "intel-vaapi-driver-g45-h264" 186 192 "libva-utils" 187 193 "igt-gpu-tools" … … 199 205 "xinput" 200 206 "xf86-input-libinput" 207 ;; "xf86-video-fbdev" 208 "xf86-video-intel" 201 209 "qemu")) 202 210 %base-packages)) … … 210 218 (tls-port "16555"))) 211 219 (service openssh-service-type) 212 (service tor-service-type 213 (tor-configuration 214 (config-file (plain-file "tor-config" 215 "HTTPTunnelPort 127.0.0.1:9250"))) 216 ) 220 (service tor-service-type) 217 221 218 222 ;;Wacom tablet support … … 294 298 (drivers '("modesetting")) 295 299 (keyboard-layout keyboard-layout))))) 300 296 301 297 302 (modify-services %desktop-services … … 306 311 (inherit config) 307 312 (substitute-urls 308 ( append (list "http://ci.guix.trop.in"313 (list "http://ci.guix.trop.in" 309 314 ;; "https://4zwzi66wwdaalbhgnix55ea3ab4pvvw66ll2ow53kjub6se4q2bclcyd.onion" 310 315 "https://bordeaux.guix.gnu.org" 311 "https://substitutes.nonguix.org") 312 %default-substitute-urls)) 316 "https://substitutes.nonguix.org")) 313 317 (authorized-keys 314 318 (append (list … … 347 351 (uuid "c184f446-df67-4103-b28e-465ac8776f10" 348 352 'ext4)) 349 (type "ext4")) 353 (type "ext4") 354 (options "discard")) 350 355 351 356 ;; Thinkpad doc HDD
Note:
See TracChangeset
for help on using the changeset viewer.