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 (propagated-inputs (list
font-velvetyne-amdal font-velvetyne-amdal
font-velvetyne-anthony font-velvetyne-anthony
font-velvetyne-avara ;; font-velvetyne-avara
font-velvetyne-backout font-velvetyne-backout
font-velvetyne-basteleur font-velvetyne-basteleur
font-velvetyne-bianzhidai font-velvetyne-bianzhidai

View file

@ -122,7 +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")) (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-23 13:06:55+01:00) ;; tangled from framework13-system.org on 2024-03-04 22:53:30+01:00)
(use-modules (gnu) (use-modules (gnu)
(gnu packages) (gnu packages)
@ -53,9 +53,14 @@
(kernel linux-6.7) ;; previously (kernel linux-FWL13) (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 linux-firmware))
;; (firmware (list amdgpu-firmware
;; amd-microcode
;; realtek-firmware))
(users (cons* (user-account (users (cons* (user-account
(name "zzk") (name "zzk")
@ -210,6 +215,13 @@ 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")
@ -230,6 +242,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

View file

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

View file

@ -1,6 +1,6 @@
;; -*- mode: scheme; coding: utf-8; -*- ;; -*- 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) (use-modules (gnu)
(gnu services) (gnu services)
@ -21,35 +21,45 @@
(home-environment (home-environment
(packages (specifications->packages (packages (specifications->packages
(list (list
"nordic-theme" "nordic-theme"
"firefox" "firefox"
"emacs-guix" "emacs-guix"
"emacs-next" "emacs-next"
"libreoffice"
"rsync" "rsync"
"neofetch" ;; "nyxt"
"nyxt"
"python" "python"
"git" "git"
"gnupg" "pinentry-emacs" "pinentry-qt" "gnupg"
"crda" "crda"
"htop" "htop"
"tree"
"password-store" "password-store"
"kmail" "kmail"
"krunner" "krunner"
"akonadi" "akonadi"
;; "kitty-next"
"kitty" "kitty"
"getmail6" "notmuch" "getmail6"
"notmuch"
"scribus" "inkscape" "gimp" "scribus"
"inkscape"
"gimp"
"imagemagick" "imagemagick"
"supercollider" "tidal" "supercollider"
"ardour" "audacity" "tidal"
"ardour"
"audacity"
"qpwgraph" "qpwgraph"
"nextcloud-client"
"lm-sensors" "lm-sensors"
"dmidecode" "dmidecode"
"lshw" "lshw"
@ -86,7 +96,8 @@
(simple-service 'variant-env-vars-service (simple-service 'variant-env-vars-service
home-environment-variables-service-type 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") ("LD_LIBRARY_PATH" . "$HOME/.guix-profile/lib")
("GPG_TTY" . "tty") ("GPG_TTY" . "tty")
("SHELL" . ,(file-append zsh "/bin/zsh")))) ("SHELL" . ,(file-append zsh "/bin/zsh"))))
@ -114,6 +125,8 @@
(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