Put in earplugs

This commit is contained in:
nik gaffney 2024-02-23 13:09:11 +01:00
parent 20a18d7b07
commit 2318efc56d
Signed by: nik
GPG key ID: 989F5E6EDB478160
4 changed files with 9 additions and 21 deletions

View file

@ -122,6 +122,7 @@ testing [[https://community.frame.work/t/adaptive-backlight-management-abm/41055
#+BEGIN_SRC scheme #+BEGIN_SRC scheme
;; (kernel-arguments '("amdgpu.abmlevel=3")) ;; (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
(kernel-arguments '("splash" "quiet"))
#+END_SRC #+END_SRC
…and required firmware (should be possible to reduce to specifics) …and required firmware (should be possible to reduce to specifics)

View file

@ -1,6 +1,6 @@
;; -*- mode: scheme; coding: utf-8; -*- ;; -*- mode: scheme; coding: utf-8; -*-
;; ;;
;; tangled from framework13-system.org on 2024-02-17 23:10:06+01:00) ;; tangled from framework13-system.org on 2024-02-23 13:06:55+01:00)
(use-modules (gnu) (use-modules (gnu)
(gnu packages) (gnu packages)
@ -53,13 +53,9 @@
(kernel linux-6.7) ;; previously (kernel linux-FWL13) (kernel linux-6.7) ;; previously (kernel linux-FWL13)
;; (kernel-arguments '("amdgpu.abmlevel=3")) (kernel-arguments '("splash" "quiet"))
;; (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")
@ -214,13 +210,6 @@ 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")
@ -241,7 +230,6 @@ 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

View file

@ -148,6 +148,7 @@ Additional channels → nonguix (aka “The GUIX Channel That Shall Not Be Named
home-environment-variables-service-type home-environment-variables-service-type
`(("NOTMUCH_PROFILE" . "$XDG_CONFIG_HOME/notmuch/notmuch.conf") `(("NOTMUCH_PROFILE" . "$XDG_CONFIG_HOME/notmuch/notmuch.conf")
("LD_LIBRARY_PATH" . "$HOME/.guix-profile/lib") ("LD_LIBRARY_PATH" . "$HOME/.guix-profile/lib")
("GPG_TTY" . "tty")
("SHELL" . ,(file-append zsh "/bin/zsh")))) ("SHELL" . ,(file-append zsh "/bin/zsh"))))
#+END_SRC #+END_SRC
@ -176,7 +177,7 @@ zsh (and/or completions and/or [[https://lists.gnu.org/archive/html/help-guix/20
(service home-gpg-agent-service-type (service home-gpg-agent-service-type
(home-gpg-agent-configuration (home-gpg-agent-configuration
(pinentry-program (pinentry-program
(file-append pinentry-emacs "/bin/pinentry-emacs")) (file-append pinentry-qt "/bin/pinentry-qt"))
(ssh-support? #t))) (ssh-support? #t)))
#+END_SRC #+END_SRC

View file

@ -1,6 +1,6 @@
;; -*- mode: scheme; coding: utf-8; -*- ;; -*- mode: scheme; coding: utf-8; -*-
;; ;;
;; tangled from home-configuration.org on 2024-02-09 14:00:59+01:00) ;; tangled from home-configuration.org on 2024-02-23 13:06:42+01:00)
(use-modules (gnu) (use-modules (gnu)
(gnu services) (gnu services)
@ -21,7 +21,6 @@
(home-environment (home-environment
(packages (specifications->packages (packages (specifications->packages
(list (list
"nordic-theme" "nordic-theme"
"firefox" "firefox"
"emacs-guix" "emacs-guix"
@ -31,7 +30,7 @@
"nyxt" "nyxt"
"python" "python"
"git" "git"
"gnupg" "gnupg" "pinentry-emacs" "pinentry-qt"
"crda" "crda"
"htop" "htop"
"password-store" "password-store"
@ -89,6 +88,7 @@
home-environment-variables-service-type home-environment-variables-service-type
`(("NOTMUCH_PROFILE" . "$XDG_CONFIG_HOME/notmuch/notmuch.conf") `(("NOTMUCH_PROFILE" . "$XDG_CONFIG_HOME/notmuch/notmuch.conf")
("LD_LIBRARY_PATH" . "$HOME/.guix-profile/lib") ("LD_LIBRARY_PATH" . "$HOME/.guix-profile/lib")
("GPG_TTY" . "tty")
("SHELL" . ,(file-append zsh "/bin/zsh")))) ("SHELL" . ,(file-append zsh "/bin/zsh"))))
(service home-zsh-service-type (service home-zsh-service-type
@ -107,15 +107,13 @@
(service home-gpg-agent-service-type (service home-gpg-agent-service-type
(home-gpg-agent-configuration (home-gpg-agent-configuration
(pinentry-program (pinentry-program
(file-append pinentry-emacs "/bin/pinentry-emacs")) (file-append pinentry-qt "/bin/pinentry-qt"))
(ssh-support? #t))) (ssh-support? #t)))
(service home-dotfiles-service-type (service home-dotfiles-service-type
(home-dotfiles-configuration (home-dotfiles-configuration
(directories (list "dotfiles")))) (directories (list "dotfiles"))))
;; ssh config in 'dotfiles'
(service home-dbus-service-type) (service home-dbus-service-type)
(service home-pipewire-service-type (service home-pipewire-service-type