Put in earplugs
This commit is contained in:
parent
82b6bd2412
commit
d6d26f810f
2 changed files with 13 additions and 11 deletions
|
@ -72,7 +72,7 @@ Some kernel corruption may be required to enable WIFI. Since the non-free kernel
|
||||||
|
|
||||||
#+begin_src scheme
|
#+begin_src scheme
|
||||||
(define-public linux-FWL13
|
(define-public linux-FWL13
|
||||||
(corrupt-linux linux-libre-6.8
|
(corrupt-linux linux-libre-6.9
|
||||||
#:name "linux-fwl13"
|
#:name "linux-fwl13"
|
||||||
#:configs '("CONFIG_MT7921E=m")))
|
#:configs '("CONFIG_MT7921E=m")))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
@ -113,9 +113,9 @@ Kernel & driver details
|
||||||
- https://www.kernel.org/doc/html/latest/gpu/amdgpu/module-parameters.html
|
- https://www.kernel.org/doc/html/latest/gpu/amdgpu/module-parameters.html
|
||||||
- https://community.frame.work/t/solved-backlight-brightness-issues/36065/13
|
- https://community.frame.work/t/solved-backlight-brightness-issues/36065/13
|
||||||
|
|
||||||
Using =linux-6.7= from nonguix (which includes =CONFIG_MT7921E= by default as of 6.7.2)
|
Using =linux-6.9= from nonguix (which includes =CONFIG_MT7921E= by default as of 6.7.2)
|
||||||
#+begin_src scheme
|
#+begin_src scheme
|
||||||
(kernel linux-6.8)
|
(kernel linux-6.9)
|
||||||
;; (kernel linux-FWL13)
|
;; (kernel linux-FWL13)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
@ -422,8 +422,10 @@ real-time scheduling for the =realtime= group (sound, supercollider, etc)
|
||||||
(service cups-service-type)
|
(service cups-service-type)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
*** firmware updates
|
||||||
|
via fwdup
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(simple-service 'fwupd-dbus dbus-service-type
|
(simple-service 'fwupd-dbus dbus-root-service-type
|
||||||
(list fwupd-nonfree))
|
(list fwupd-nonfree))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
@ -440,9 +442,9 @@ If gdm is reconfigured (see above) or any other display manager is declared, gdm
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
*** mDNS
|
*** mDNS
|
||||||
Enable resolution of '.local' host names with mDNS.
|
Enable resolution of '.local' host names with mDNS (as of 2024-06-17 looks like this conflicts with smbd)
|
||||||
#+begin_src scheme
|
#+begin_src scheme
|
||||||
(name-service-switch %mdns-host-lookup-nss)
|
;; (name-service-switch %mdns-host-lookup-nss)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
*** screen locker
|
*** screen locker
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
;; -*- mode: scheme; coding: utf-8; -*-
|
;; -*- mode: scheme; coding: utf-8; -*-
|
||||||
;;
|
;;
|
||||||
;; tangled from framework13-system.org on 2024-04-25 09:46:25+02:00)
|
;; tangled from framework13-system.org on 2024-06-18 12:53:06+02:00)
|
||||||
|
|
||||||
(use-modules (gnu)
|
(use-modules (gnu)
|
||||||
(gnu packages)
|
(gnu packages)
|
||||||
|
@ -35,7 +35,7 @@
|
||||||
vpn)
|
vpn)
|
||||||
|
|
||||||
(define-public linux-FWL13
|
(define-public linux-FWL13
|
||||||
(corrupt-linux linux-libre-6.8
|
(corrupt-linux linux-libre-6.9
|
||||||
#:name "linux-fwl13"
|
#:name "linux-fwl13"
|
||||||
#:configs '("CONFIG_MT7921E=m")))
|
#:configs '("CONFIG_MT7921E=m")))
|
||||||
|
|
||||||
|
@ -51,7 +51,7 @@
|
||||||
#:options '("ctrl:nocaps"
|
#:options '("ctrl:nocaps"
|
||||||
"altwin:swap_lalt_lwin")))
|
"altwin:swap_lalt_lwin")))
|
||||||
|
|
||||||
(kernel linux-6.8)
|
(kernel linux-6.9)
|
||||||
;; (kernel linux-FWL13)
|
;; (kernel linux-FWL13)
|
||||||
|
|
||||||
;; (kernel-arguments '("amdgpu.abmlevel=3"))
|
;; (kernel-arguments '("amdgpu.abmlevel=3"))
|
||||||
|
@ -273,7 +273,7 @@ writable = yes
|
||||||
|
|
||||||
(service cups-service-type)
|
(service cups-service-type)
|
||||||
|
|
||||||
(simple-service 'fwupd-dbus dbus-service-type
|
(simple-service 'fwupd-dbus dbus-root-service-type
|
||||||
(list fwupd-nonfree))
|
(list fwupd-nonfree))
|
||||||
|
|
||||||
) ;; end services list
|
) ;; end services list
|
||||||
|
@ -281,7 +281,7 @@ writable = yes
|
||||||
(modify-services %desktop-services
|
(modify-services %desktop-services
|
||||||
(delete gdm-service-type))))
|
(delete gdm-service-type))))
|
||||||
|
|
||||||
(name-service-switch %mdns-host-lookup-nss)
|
;; (name-service-switch %mdns-host-lookup-nss)
|
||||||
|
|
||||||
;; (service screen-locker-service-type
|
;; (service screen-locker-service-type
|
||||||
;; (screen-locker-configuration
|
;; (screen-locker-configuration
|
||||||
|
|
Loading…
Reference in a new issue