Put in earplugs
This commit is contained in:
parent
e45f9c850f
commit
ef9a4cdeb9
1 changed files with 37 additions and 30 deletions
|
@ -26,11 +26,18 @@ echo ";; -*- mode: scheme; coding: utf-8; -*-
|
||||||
(use-modules (gnu)
|
(use-modules (gnu)
|
||||||
(gnu home)
|
(gnu home)
|
||||||
(gnu packages)
|
(gnu packages)
|
||||||
|
(gnu services)
|
||||||
(gnu packages gnupg)
|
(gnu packages gnupg)
|
||||||
|
(gnu packages shells)
|
||||||
|
(guix channels)
|
||||||
(guix gexp)
|
(guix gexp)
|
||||||
|
(gnu home services)
|
||||||
|
(gnu home services guix)
|
||||||
(gnu home services shells)
|
(gnu home services shells)
|
||||||
|
(gnu home services dotfiles)
|
||||||
|
(gnu home services desktop)
|
||||||
|
(gnu home services sound)
|
||||||
(gnu home services gnupg))
|
(gnu home services gnupg))
|
||||||
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
getmail? → (use-service-modules mail)
|
getmail? → (use-service-modules mail)
|
||||||
|
@ -117,7 +124,7 @@ additional channels → nonguix & zzkt
|
||||||
environment / variables
|
environment / variables
|
||||||
|
|
||||||
#+BEGIN_SRC scheme
|
#+BEGIN_SRC scheme
|
||||||
(simple-service 'some-useful-env-vars-service
|
(simple-service 'variant-env-vars-service
|
||||||
home-environment-variables-service-type
|
home-environment-variables-service-type
|
||||||
`(("NOTMUCH_PROFILE" . "$HOME/.config/notmuch/notmuch.conf")
|
`(("NOTMUCH_PROFILE" . "$HOME/.config/notmuch/notmuch.conf")
|
||||||
("LD_LIBRARY_PATH" . "$HOME/.guix-profile/lib")
|
("LD_LIBRARY_PATH" . "$HOME/.guix-profile/lib")
|
||||||
|
@ -166,20 +173,20 @@ ssh & sundry (see also [[https://guix.gnu.org/manual/devel/en/html_node/Secure-S
|
||||||
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
sound via pipewire (see also [[https://guix.gnu.org/manual/devel/en/html_node/Sound-Home-Services.html][guix manual]])
|
sound via pipewire which requires dbus (see also [[https://guix.gnu.org/manual/devel/en/html_node/Sound-Home-Services.html][guix manual]])
|
||||||
|
|
||||||
#+BEGIN_SRC scheme
|
#+BEGIN_SRC scheme
|
||||||
|
(service home-dbus-service-type)
|
||||||
|
|
||||||
(service home-pipewire-service-type
|
(service home-pipewire-service-type
|
||||||
(home-pipewire-configuration
|
(home-pipewire-configuration
|
||||||
(pipewire "pipewire")
|
|
||||||
(wireplumber "wireplumber")
|
|
||||||
(enable-pulseaudio? #t)))
|
(enable-pulseaudio? #t)))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
fonts
|
fonts ( see -> https://guix.gnu.org/manual/devel/en/html_node/Fonts-Home-Services.html)
|
||||||
|
|
||||||
#+BEGIN_SRC scheme
|
#+BEGIN_SRC scheme
|
||||||
;; see -> https://guix.gnu.org/manual/devel/en/html_node/Fonts-Home-Services.html
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
FIN
|
FIN
|
||||||
|
|
Loading…
Reference in a new issue