Put in earplugs
This commit is contained in:
parent
1ec24b52f9
commit
9e516388ba
4 changed files with 55 additions and 28 deletions
|
@ -339,18 +339,16 @@ details can be found (and mostly ignored) in [[https://guix.gnu.org/cookbook/en
|
||||||
(endpoint "example.org:51820")
|
(endpoint "example.org:51820")
|
||||||
(public-key "taeID3fNgci9OpE+1UYkS4DYZE6DIlhpLQL1BVN9sg8=")
|
(public-key "taeID3fNgci9OpE+1UYkS4DYZE6DIlhpLQL1BVN9sg8=")
|
||||||
(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))
|
||||||
|
(wireguard-peer
|
||||||
|
(name "vrt")
|
||||||
|
(public-key "4xA6sNrHyAebXZ2i8szdN0WMhH61CE786H+pGQwuLlA=")
|
||||||
|
(allowed-ips '("10.0.0.22/32" "fded:dada::22/128"))
|
||||||
(keep-alive 25))))))
|
(keep-alive 25))))))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
*** display manager
|
*** display manager
|
||||||
#+begin_src scheme
|
#+begin_src scheme
|
||||||
;; (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")
|
||||||
|
@ -377,13 +375,13 @@ Trackpad config using [[https://www.mankier.com/4/libinput][libinput]]
|
||||||
*** desktop environments
|
*** desktop environments
|
||||||
Provide Gnome, KDE (plasma) and xfce as desktop environments. exwm is enabled automatically via module.
|
Provide Gnome, KDE (plasma) and xfce as desktop environments. exwm is enabled automatically via module.
|
||||||
#+begin_src scheme
|
#+begin_src scheme
|
||||||
(service plasma-desktop-service-type)
|
;; (service plasma-desktop-service-type)
|
||||||
;; (service gnome-desktop-service-type)
|
;; (service gnome-desktop-service-type)
|
||||||
(service xfce-desktop-service-type)
|
;; (service xfce-desktop-service-type)
|
||||||
|
(service lxqt-desktop-service-type)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
*** file sharing
|
*** file sharing
|
||||||
|
|
||||||
#+begin_src scheme
|
#+begin_src scheme
|
||||||
(service samba-service-type
|
(service samba-service-type
|
||||||
(samba-configuration
|
(samba-configuration
|
||||||
|
@ -460,7 +458,6 @@ initrd with AMD microcode blobs
|
||||||
#:initrd base-initrd
|
#:initrd base-initrd
|
||||||
#:microcode-packages (list amd-microcode)
|
#:microcode-packages (list amd-microcode)
|
||||||
rest)))
|
rest)))
|
||||||
|
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** bootloader
|
** bootloader
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
;; -*- mode: scheme; coding: utf-8; -*-
|
;; -*- mode: scheme; coding: utf-8; -*-
|
||||||
;;
|
;;
|
||||||
;; tangled from framework13-system.org on 2024-03-06 08:32:36+01:00)
|
;; tangled from framework13-system.org on 2024-03-07 15:39:01+01:00)
|
||||||
|
|
||||||
(use-modules (gnu)
|
(use-modules (gnu)
|
||||||
(gnu packages)
|
(gnu packages)
|
||||||
|
@ -213,15 +213,13 @@ COMMIT
|
||||||
(endpoint "example.org:51820")
|
(endpoint "example.org:51820")
|
||||||
(public-key "taeID3fNgci9OpE+1UYkS4DYZE6DIlhpLQL1BVN9sg8=")
|
(public-key "taeID3fNgci9OpE+1UYkS4DYZE6DIlhpLQL1BVN9sg8=")
|
||||||
(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))
|
||||||
|
(wireguard-peer
|
||||||
|
(name "vrt")
|
||||||
|
(public-key "4xA6sNrHyAebXZ2i8szdN0WMhH61CE786H+pGQwuLlA=")
|
||||||
|
(allowed-ips '("10.0.0.22/32" "fded:dada::22/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,9 +239,10 @@ COMMIT
|
||||||
Option \"AccelProfile\" \"adaptive\"
|
Option \"AccelProfile\" \"adaptive\"
|
||||||
EndSection"))))))
|
EndSection"))))))
|
||||||
|
|
||||||
(service plasma-desktop-service-type)
|
;; (service plasma-desktop-service-type)
|
||||||
;; (service gnome-desktop-service-type)
|
;; (service gnome-desktop-service-type)
|
||||||
(service xfce-desktop-service-type)
|
;; (service xfce-desktop-service-type)
|
||||||
|
(service lxqt-desktop-service-type)
|
||||||
|
|
||||||
(service samba-service-type
|
(service samba-service-type
|
||||||
(samba-configuration
|
(samba-configuration
|
||||||
|
|
|
@ -59,8 +59,6 @@ Packages that will show up in the home profile under =~/.guix-home/profile=
|
||||||
"libreoffice"
|
"libreoffice"
|
||||||
"rsync"
|
"rsync"
|
||||||
;; "nyxt"
|
;; "nyxt"
|
||||||
"python"
|
|
||||||
"git" "git:send-email"
|
|
||||||
"gnupg"
|
"gnupg"
|
||||||
"crda"
|
"crda"
|
||||||
"htop"
|
"htop"
|
||||||
|
@ -98,11 +96,32 @@ kitty config is in =dotfiles/kitty/kitty.conf=
|
||||||
"ardour"
|
"ardour"
|
||||||
"audacity"
|
"audacity"
|
||||||
"qpwgraph"
|
"qpwgraph"
|
||||||
|
"patchage"
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
*** programming, dev & ops
|
||||||
|
#+BEGIN_SRC scheme :session
|
||||||
|
"guile"
|
||||||
|
"sbcl"
|
||||||
|
"racket"
|
||||||
|
"python"
|
||||||
|
"gcc-toolchain"
|
||||||
|
"git" "git:send-email"
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
*** network & interconnect
|
*** network & interconnect
|
||||||
#+BEGIN_SRC scheme
|
#+BEGIN_SRC scheme
|
||||||
"nextcloud-client"
|
"nextcloud-client"
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
*** fonts & typography
|
||||||
|
|
||||||
|
#+BEGIN_SRC scheme :session
|
||||||
|
"font-monaspace"
|
||||||
|
"font-recursive"
|
||||||
|
"font-fira-sans"
|
||||||
|
"font-fira-mono"
|
||||||
|
"font-victor-mono"
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
*** Hardware
|
*** Hardware
|
||||||
#+BEGIN_SRC scheme
|
#+BEGIN_SRC scheme
|
||||||
"lm-sensors"
|
"lm-sensors"
|
||||||
|
@ -159,7 +178,7 @@ Additional channels → nonguix (aka “The GUIX Channel That Shall Not Be Named
|
||||||
`(("GUIX_LOCPATH" . "$HOME/.guix-profile/lib/locale")
|
`(("GUIX_LOCPATH" . "$HOME/.guix-profile/lib/locale")
|
||||||
("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")
|
("GPG_TTY" . "$TTY")
|
||||||
("SHELL" . ,(file-append zsh "/bin/zsh"))))
|
("SHELL" . ,(file-append zsh "/bin/zsh"))))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
;; -*- mode: scheme; coding: utf-8; -*-
|
;; -*- mode: scheme; coding: utf-8; -*-
|
||||||
;;
|
;;
|
||||||
;; tangled from home-configuration.org on 2024-03-06 08:32:30+01:00)
|
;; tangled from home-configuration.org on 2024-03-07 15:41:27+01:00)
|
||||||
|
|
||||||
(use-modules (gnu)
|
(use-modules (gnu)
|
||||||
(gnu services)
|
(gnu services)
|
||||||
|
@ -29,8 +29,6 @@
|
||||||
"libreoffice"
|
"libreoffice"
|
||||||
"rsync"
|
"rsync"
|
||||||
;; "nyxt"
|
;; "nyxt"
|
||||||
"python"
|
|
||||||
"git" "git:send-email"
|
|
||||||
"gnupg"
|
"gnupg"
|
||||||
"crda"
|
"crda"
|
||||||
"htop"
|
"htop"
|
||||||
|
@ -57,9 +55,23 @@
|
||||||
"ardour"
|
"ardour"
|
||||||
"audacity"
|
"audacity"
|
||||||
"qpwgraph"
|
"qpwgraph"
|
||||||
|
"patchage"
|
||||||
|
|
||||||
|
"guile"
|
||||||
|
"sbcl"
|
||||||
|
"racket"
|
||||||
|
"python"
|
||||||
|
"gcc-toolchain"
|
||||||
|
"git" "git:send-email"
|
||||||
|
|
||||||
"nextcloud-client"
|
"nextcloud-client"
|
||||||
|
|
||||||
|
"font-monaspace"
|
||||||
|
"font-recursive"
|
||||||
|
"font-fira-sans"
|
||||||
|
"font-fira-mono"
|
||||||
|
"font-victor-mono"
|
||||||
|
|
||||||
"lm-sensors"
|
"lm-sensors"
|
||||||
"dmidecode"
|
"dmidecode"
|
||||||
"lshw"
|
"lshw"
|
||||||
|
@ -99,7 +111,7 @@
|
||||||
`(("GUIX_LOCPATH" . "$HOME/.guix-profile/lib/locale")
|
`(("GUIX_LOCPATH" . "$HOME/.guix-profile/lib/locale")
|
||||||
("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")
|
("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
|
||||||
|
|
Loading…
Reference in a new issue