Put in earplugs
This commit is contained in:
parent
5b8359f6ba
commit
20a18d7b07
2 changed files with 24 additions and 4 deletions
|
@ -31,6 +31,7 @@ echo ";; -*- mode: scheme; coding: utf-8; -*-
|
||||||
(gnu packages shells)
|
(gnu packages shells)
|
||||||
(gnu packages linux)
|
(gnu packages linux)
|
||||||
(gnu packages xdisorg)
|
(gnu packages xdisorg)
|
||||||
|
(gnu packages display-managers)
|
||||||
(gnu packages emacs-xyz))
|
(gnu packages emacs-xyz))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
@ -112,7 +113,7 @@ 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.7= from nonguix (which includes =CONFIG_MT7921E= by default as of 6.7.2)
|
||||||
#+begin_src scheme
|
#+begin_src scheme
|
||||||
(kernel linux-6.7) ;; previously (kernel linux-FWL13)
|
(kernel linux-6.7) ;; previously (kernel linux-FWL13)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
@ -191,6 +192,8 @@ Packages installed system-wide. Users can also install packages under their own
|
||||||
;; gnome extras
|
;; gnome extras
|
||||||
"gnome-tweaks"
|
"gnome-tweaks"
|
||||||
"gvfs"
|
"gvfs"
|
||||||
|
; sddm
|
||||||
|
"chili-sddm-theme"
|
||||||
;; vpn
|
;; vpn
|
||||||
"wireguard-tools"
|
"wireguard-tools"
|
||||||
))
|
))
|
||||||
|
@ -351,7 +354,7 @@ details can be found (and mostly ignored) in [[https://guix.gnu.org/cookbook/en
|
||||||
(sddm-configuration
|
(sddm-configuration
|
||||||
(display-server "x11")
|
(display-server "x11")
|
||||||
(remember-last-user? #t)
|
(remember-last-user? #t)
|
||||||
(theme "maya")
|
(theme "chili")
|
||||||
(xorg-configuration
|
(xorg-configuration
|
||||||
(xorg-configuration
|
(xorg-configuration
|
||||||
(keyboard-layout keyboard-layout)
|
(keyboard-layout keyboard-layout)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
;; -*- mode: scheme; coding: utf-8; -*-
|
;; -*- mode: scheme; coding: utf-8; -*-
|
||||||
;;
|
;;
|
||||||
;; tangled from framework13-system.org on 2024-02-10 16:57:56+01:00)
|
;; tangled from framework13-system.org on 2024-02-17 23:10:06+01:00)
|
||||||
|
|
||||||
(use-modules (gnu)
|
(use-modules (gnu)
|
||||||
(gnu packages)
|
(gnu packages)
|
||||||
|
@ -10,6 +10,7 @@
|
||||||
(gnu packages shells)
|
(gnu packages shells)
|
||||||
(gnu packages linux)
|
(gnu packages linux)
|
||||||
(gnu packages xdisorg)
|
(gnu packages xdisorg)
|
||||||
|
(gnu packages display-managers)
|
||||||
(gnu packages emacs-xyz))
|
(gnu packages emacs-xyz))
|
||||||
|
|
||||||
(use-modules (nongnu packages linux)
|
(use-modules (nongnu packages linux)
|
||||||
|
@ -52,7 +53,13 @@
|
||||||
|
|
||||||
(kernel linux-6.7) ;; previously (kernel linux-FWL13)
|
(kernel linux-6.7) ;; previously (kernel linux-FWL13)
|
||||||
|
|
||||||
|
;; (kernel-arguments '("amdgpu.abmlevel=3"))
|
||||||
|
;; (kernel-arguments '("modprobe.blacklist=hid_sensor_hub")) ;; required prior to 6.7
|
||||||
|
|
||||||
(firmware (list linux-firmware))
|
(firmware (list linux-firmware))
|
||||||
|
;; (firmware (list amdgpu-firmware
|
||||||
|
;; amd-microcode
|
||||||
|
;; realtek-firmware))
|
||||||
|
|
||||||
(users (cons* (user-account
|
(users (cons* (user-account
|
||||||
(name "zzk")
|
(name "zzk")
|
||||||
|
@ -100,6 +107,8 @@
|
||||||
;; gnome extras
|
;; gnome extras
|
||||||
"gnome-tweaks"
|
"gnome-tweaks"
|
||||||
"gvfs"
|
"gvfs"
|
||||||
|
; sddm
|
||||||
|
"chili-sddm-theme"
|
||||||
;; vpn
|
;; vpn
|
||||||
"wireguard-tools"
|
"wireguard-tools"
|
||||||
))
|
))
|
||||||
|
@ -205,11 +214,18 @@ COMMIT
|
||||||
(allowed-ips '("10.0.0.13/32" "fded:dada::13/128"))
|
(allowed-ips '("10.0.0.13/32" "fded:dada::13/128"))
|
||||||
(keep-alive 25))))))
|
(keep-alive 25))))))
|
||||||
|
|
||||||
|
;; (service gdm-service-type
|
||||||
|
;; (gdm-configuration
|
||||||
|
;; (auto-suspend? #f)
|
||||||
|
;; (xorg-configuration
|
||||||
|
;; (xorg-configuration
|
||||||
|
;; (keyboard-layout keyboard-layout)
|
||||||
|
|
||||||
(service sddm-service-type
|
(service sddm-service-type
|
||||||
(sddm-configuration
|
(sddm-configuration
|
||||||
(display-server "x11")
|
(display-server "x11")
|
||||||
(remember-last-user? #t)
|
(remember-last-user? #t)
|
||||||
(theme "maya")
|
(theme "chili")
|
||||||
(xorg-configuration
|
(xorg-configuration
|
||||||
(xorg-configuration
|
(xorg-configuration
|
||||||
(keyboard-layout keyboard-layout)
|
(keyboard-layout keyboard-layout)
|
||||||
|
@ -225,6 +241,7 @@ COMMIT
|
||||||
EndSection"))))))
|
EndSection"))))))
|
||||||
|
|
||||||
(service plasma-desktop-service-type)
|
(service plasma-desktop-service-type)
|
||||||
|
;; (service gnome-desktop-service-type)
|
||||||
(service xfce-desktop-service-type)
|
(service xfce-desktop-service-type)
|
||||||
|
|
||||||
(service samba-service-type
|
(service samba-service-type
|
||||||
|
|
Loading…
Reference in a new issue