Put in earplugs

This commit is contained in:
nik gaffney 2024-02-08 14:07:46 +01:00
parent bb38c513d5
commit 39d37509d8
Signed by: nik
GPG key ID: 989F5E6EDB478160
3 changed files with 16 additions and 11 deletions

View file

@ -69,9 +69,9 @@ Include non-free linux kernel, modules and firmware from the [[https://gitlab.c
Some kernel corruption may be required to enable WIFI. Since the non-free kernel from nonguix prior to 6.7.2 doesnt include the driver for RZ616/MT7922 adapter by default it needs to be added explicitly. Defined here and used in the =operating-system= declaration below. (see also commit [[https://gitlab.com/nonguix/nonguix/-/commit/3857d86267284000dc48660a5dfd56cb2a8cf004][3857d862]] for the addition of =nonguix-extra-linux-options=) Some kernel corruption may be required to enable WIFI. Since the non-free kernel from nonguix prior to 6.7.2 doesnt include the driver for RZ616/MT7922 adapter by default it needs to be added explicitly. Defined here and used in the =operating-system= declaration below. (see also commit [[https://gitlab.com/nonguix/nonguix/-/commit/3857d86267284000dc48660a5dfd56cb2a8cf004][3857d862]] for the addition of =nonguix-extra-linux-options=)
#+begin_src scheme #+begin_src scheme
(define-public linux-fw13 (define-public linux-FWL13
(corrupt-linux linux-libre-6.7 (corrupt-linux linux-libre-6.7
#:name "linux-fw13" #:name "linux-fwl13"
#:configs '("CONFIG_MT7921E=m"))) #:configs '("CONFIG_MT7921E=m")))
#+end_src #+end_src
@ -113,11 +113,15 @@ Kernel & driver details
Using =linux-6.7= from nonguix which includes =CONFIG_MT7921E= by default as of 6.7.2 Using =linux-6.7= from nonguix which includes =CONFIG_MT7921E= by default as of 6.7.2
#+begin_src scheme #+begin_src scheme
;; (kernel linux-fw13) (kernel linux-6.7) ;; previously (kernel linux-FWL13)
(kernel linux-6.7)
;; (kernel-arguments '("modprobe.blacklist=hid_sensor_hub")) ;; required prior to 6.7
#+end_src #+end_src
testing [[https://community.frame.work/t/adaptive-backlight-management-abm/41055][Adaptive Backlight Management (ABM)]]
#+BEGIN_SRC scheme
(kernel-arguments '("amdgpu.abmlevel=3"))
;; (kernel-arguments '("modprobe.blacklist=hid_sensor_hub")) ;; required prior to 6.7
#+END_SRC
…and required firmware (should be possible to reduce to specifics) …and required firmware (should be possible to reduce to specifics)
#+begin_src scheme #+begin_src scheme
(firmware (list linux-firmware)) (firmware (list linux-firmware))

View file

@ -1,6 +1,6 @@
;; -*- mode: scheme; coding: utf-8; -*- ;; -*- mode: scheme; coding: utf-8; -*-
;; ;;
;; tangled from framework13-system.org on 2024-02-08 11:11:49+01:00) ;; tangled from framework13-system.org on 2024-02-08 14:07:04+01:00)
(use-modules (gnu) (use-modules (gnu)
(gnu packages) (gnu packages)
@ -32,9 +32,9 @@
tls tls
vpn) vpn)
(define-public linux-fw13 (define-public linux-FWL13
(corrupt-linux linux-libre-6.7 (corrupt-linux linux-libre-6.7
#:name "linux-fw13" #:name "linux-fwl13"
#:configs '("CONFIG_MT7921E=m"))) #:configs '("CONFIG_MT7921E=m")))
(operating-system (operating-system
@ -49,8 +49,9 @@
#:options '("ctrl:nocaps" #:options '("ctrl:nocaps"
"altwin:swap_lalt_lwin"))) "altwin:swap_lalt_lwin")))
;; (kernel linux-fw13) (kernel linux-6.7) ;; previously (kernel linux-FWL13)
(kernel linux-6.7)
(kernel-arguments '("amdgpu.abmlevel=3"))
;; (kernel-arguments '("modprobe.blacklist=hid_sensor_hub")) ;; required prior to 6.7 ;; (kernel-arguments '("modprobe.blacklist=hid_sensor_hub")) ;; required prior to 6.7
(firmware (list linux-firmware)) (firmware (list linux-firmware))

View file

@ -1,6 +1,6 @@
;; -*- mode: scheme; coding: utf-8; -*- ;; -*- mode: scheme; coding: utf-8; -*-
;; ;;
;; tangled from home-configuration.org on 2024-02-08 11:12:05+01:00) ;; tangled from home-configuration.org on 2024-02-08 14:07:19+01:00)
(use-modules (gnu) (use-modules (gnu)
(gnu services) (gnu services)