Put in earplugs

This commit is contained in:
nik gaffney 2024-03-04 22:54:13 +01:00
parent bbf678feae
commit f13ea23498
Signed by: nik
GPG key ID: 989F5E6EDB478160
5 changed files with 60 additions and 22 deletions

View file

@ -47,7 +47,7 @@
(propagated-inputs (list
font-velvetyne-amdal
font-velvetyne-anthony
font-velvetyne-avara
;; font-velvetyne-avara
font-velvetyne-backout
font-velvetyne-basteleur
font-velvetyne-bianzhidai

View file

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

View file

@ -1,6 +1,6 @@
;; -*- mode: scheme; coding: utf-8; -*-
;;
;; tangled from framework13-system.org on 2024-02-23 13:06:55+01:00)
;; tangled from framework13-system.org on 2024-03-04 22:53:30+01:00)
(use-modules (gnu)
(gnu packages)
@ -53,9 +53,14 @@
(kernel linux-6.7) ;; previously (kernel linux-FWL13)
(kernel-arguments '("splash" "quiet"))
;; (kernel-arguments '("amdgpu.abmlevel=3"))
;; (kernel-arguments '("modprobe.blacklist=hid_sensor_hub")) ;; required prior to 6.7
(kernel-arguments '("splash quiet"))
(firmware (list linux-firmware))
;; (firmware (list amdgpu-firmware
;; amd-microcode
;; realtek-firmware))
(users (cons* (user-account
(name "zzk")
@ -210,6 +215,13 @@ COMMIT
(allowed-ips '("10.0.0.13/32" "fded:dada::13/128"))
(keep-alive 25))))))
;; (service gdm-service-type
;; (gdm-configuration
;; (auto-suspend? #f)
;; (xorg-configuration
;; (xorg-configuration
;; (keyboard-layout keyboard-layout)
(service sddm-service-type
(sddm-configuration
(display-server "x11")
@ -230,6 +242,7 @@ COMMIT
EndSection"))))))
(service plasma-desktop-service-type)
;; (service gnome-desktop-service-type)
(service xfce-desktop-service-type)
(service samba-service-type

View file

@ -56,14 +56,15 @@ Packages that will show up in the home profile under =~/.guix-home/profile=
"firefox"
"emacs-guix"
"emacs-next"
"libreoffice"
"rsync"
"neofetch"
"nyxt"
;; "nyxt"
"python"
"git"
"gnupg"
"crda"
"htop"
"tree"
"password-store"
#+END_SRC
*** KDE packages
@ -75,24 +76,34 @@ Packages that will show up in the home profile under =~/.guix-home/profile=
*** terminal
kitty config is in =dotfiles/kitty/kitty.conf=
#+BEGIN_SRC scheme
"kitty-next"
;; "kitty"
;; "kitty-next"
"kitty"
#+END_SRC
*** Mail
#+BEGIN_SRC scheme
"getmail6" "notmuch"
"getmail6"
"notmuch"
#+END_SRC
*** graphics
#+BEGIN_SRC scheme
"scribus" "inkscape" "gimp"
"scribus"
"inkscape"
"gimp"
"imagemagick"
#+END_SRC
*** music, sound & noise
#+BEGIN_SRC scheme
"supercollider" "tidal"
"ardour" "audacity"
"supercollider"
"tidal"
"ardour"
"audacity"
"qpwgraph"
#+END_SRC
*** network & interconnect
#+BEGIN_SRC scheme
"nextcloud-client"
#+END_SRC
*** Hardware
#+BEGIN_SRC scheme
"lm-sensors"
@ -146,7 +157,8 @@ Additional channels → nonguix (aka “The GUIX Channel That Shall Not Be Named
#+BEGIN_SRC scheme
(simple-service 'variant-env-vars-service
home-environment-variables-service-type
`(("NOTMUCH_PROFILE" . "$XDG_CONFIG_HOME/notmuch/notmuch.conf")
`(("GUIX_LOCPATH" . "$HOME/.guix-profile/lib/locale")
("NOTMUCH_PROFILE" . "$XDG_CONFIG_HOME/notmuch/notmuch.conf")
("LD_LIBRARY_PATH" . "$HOME/.guix-profile/lib")
("GPG_TTY" . "tty")
("SHELL" . ,(file-append zsh "/bin/zsh"))))

View file

@ -1,6 +1,6 @@
;; -*- mode: scheme; coding: utf-8; -*-
;;
;; tangled from home-configuration.org on 2024-02-23 13:06:42+01:00)
;; tangled from home-configuration.org on 2024-03-04 22:50:55+01:00)
(use-modules (gnu)
(gnu services)
@ -21,35 +21,45 @@
(home-environment
(packages (specifications->packages
(list
"nordic-theme"
"firefox"
"emacs-guix"
"emacs-next"
"libreoffice"
"rsync"
"neofetch"
"nyxt"
;; "nyxt"
"python"
"git"
"gnupg" "pinentry-emacs" "pinentry-qt"
"gnupg"
"crda"
"htop"
"tree"
"password-store"
"kmail"
"krunner"
"akonadi"
;; "kitty-next"
"kitty"
"getmail6" "notmuch"
"getmail6"
"notmuch"
"scribus" "inkscape" "gimp"
"scribus"
"inkscape"
"gimp"
"imagemagick"
"supercollider" "tidal"
"ardour" "audacity"
"supercollider"
"tidal"
"ardour"
"audacity"
"qpwgraph"
"nextcloud-client"
"lm-sensors"
"dmidecode"
"lshw"
@ -86,7 +96,8 @@
(simple-service 'variant-env-vars-service
home-environment-variables-service-type
`(("NOTMUCH_PROFILE" . "$XDG_CONFIG_HOME/notmuch/notmuch.conf")
`(("GUIX_LOCPATH" . "$HOME/.guix-profile/lib/locale")
("NOTMUCH_PROFILE" . "$XDG_CONFIG_HOME/notmuch/notmuch.conf")
("LD_LIBRARY_PATH" . "$HOME/.guix-profile/lib")
("GPG_TTY" . "tty")
("SHELL" . ,(file-append zsh "/bin/zsh"))))
@ -114,6 +125,8 @@
(home-dotfiles-configuration
(directories (list "dotfiles"))))
;; ssh config in 'dotfiles'
(service home-dbus-service-type)
(service home-pipewire-service-type