Changeset 3a705ab in dotfiles


Ignore:
Timestamp:
Sep 17, 2022, 9:39:03 PM (2 years ago)
Author:
Mikhail Kirillov <w96k@…>
Branches:
master
Children:
43feba7
Parents:
020747f
Message:

Update guix config

File:
1 edited

Legend:

Unmodified
Added
Removed
  • guix/config.scm

    r020747f r3a705ab  
     1;; -*- geiser-scheme-implementation: guile -*-
     2
    13(use-modules (gnu)
    2              (srfi srfi-1)
    3              (guix packages))
     4             (gnu packages)
     5             (srfi srfi-1))
    46
    57(use-service-modules
     
    7274  (plain-file "thinkfan.conf"
    7375   "\
    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
     76hwmon /sys/devices/platform/thinkpad_hwmon/hwmon/hwmon4/temp3_input
     77hwmon /sys/devices/platform/thinkpad_hwmon/hwmon/hwmon4/temp5_input
     78hwmon /sys/devices/platform/thinkpad_hwmon/hwmon/hwmon4/temp1_input
     79hwmon /sys/devices/platform/thinkpad_hwmon/hwmon/hwmon4/temp4_input
     80hwmon /sys/devices/platform/thinkpad_hwmon/hwmon/hwmon4/temp6_input
     81hwmon /sys/devices/platform/thinkpad_hwmon/hwmon/hwmon4/temp7_input
     82hwmon /sys/devices/platform/thinkpad_hwmon/hwmon/hwmon4/temp8_input
    7983hwmon /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/hwmon/hwmon1/temp1_input
    8084hwmon /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_input
    82 hwmon /sys/devices/platform/coretemp.0/hwmon/hwmon6/temp2_input
     85# hwmon /sys/devices/platform/coretemp.0/hwmon/hwmon6/temp3_input
     86# hwmon /sys/devices/platform/coretemp.0/hwmon/hwmon6/temp2_input
    8387hwmon /sys/devices/virtual/thermal/thermal_zone0/hwmon0/temp1_input
    8488hwmon /sys/devices/virtual/thermal/thermal_zone0/hwmon0/temp2_input
     
    118122   '("grp:shifts_toggle"
    119123     "caps:ctrl_modifier")))
    120  (kernel linux-libre-5.18)
    121  (kernel-loadable-modules '())
     124 (kernel linux-libre-5.19)
     125 ;; (kernel-loadable-modules '())
    122126 (kernel-arguments
    123127   '("consoleblank=0"
    124      "processor.max_cstate=3"  ; Disable power savings
    125      "intel_idle.max_cstate=0" ; (cstate 3-4 provides
    126                                         ; 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)
    127131     "vblank_mode=0"
    128132     ;;"vm.swappiness=5"
     
    131135     "acpi_osi=Linux"
    132136     "i915.modeset=1"
    133      "i915.enable_dc=0"
    134      "i915.enable_psr=0"
     137     ;; "i915.enable_dc=0"
     138     ;; "i915.enable_psr=0"
    135139     "rootfstype=ext4"
    136140     "KVM"
     
    156160    specification->package
    157161    '("xterm"
     162      "xinit"
     163      "xorg-server"
    158164      "font-gnu-unifont"
    159165      "font-gnu-freefont"
     
    183189      "gst-plugins-ugly"
    184190      "gst-libav"
    185       "intel-vaapi-driver-g45-h264"
     191      ;; "intel-vaapi-driver-g45-h264"
    186192      "libva-utils"
    187193      "igt-gpu-tools"
     
    199205      "xinput"
    200206      "xf86-input-libinput"
     207      ;; "xf86-video-fbdev"
     208      "xf86-video-intel"
    201209      "qemu"))
    202210   %base-packages))
     
    210218                              (tls-port "16555")))
    211219   (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)
    217221
    218222   ;;Wacom tablet support
     
    294298               (drivers '("modesetting"))
    295299               (keyboard-layout keyboard-layout)))))
     300   
    296301   
    297302   (modify-services %desktop-services
     
    306311                      (inherit config)
    307312                      (substitute-urls
    308                        (append (list "http://ci.guix.trop.in"
     313                       (list "http://ci.guix.trop.in"
    309314                                     ;; "https://4zwzi66wwdaalbhgnix55ea3ab4pvvw66ll2ow53kjub6se4q2bclcyd.onion"
    310315                                     "https://bordeaux.guix.gnu.org"
    311                                      "https://substitutes.nonguix.org")
    312                                %default-substitute-urls))
     316                                     "https://substitutes.nonguix.org"))
    313317                      (authorized-keys
    314318                       (append (list
     
    347351     (uuid "c184f446-df67-4103-b28e-465ac8776f10"
    348352           'ext4))
    349     (type "ext4"))
     353    (type "ext4")
     354    (options "discard"))
    350355
    351356   ;; Thinkpad doc HDD
Note: See TracChangeset for help on using the changeset viewer.