Put in earplugs
This commit is contained in:
parent
bf9e3febd5
commit
02cdb79828
2 changed files with 41 additions and 32 deletions
|
@ -24,11 +24,11 @@ echo ";; -*- mode: scheme; coding: utf-8; -*-
|
||||||
|
|
||||||
#+BEGIN_SRC scheme
|
#+BEGIN_SRC scheme
|
||||||
(use-modules (gnu)
|
(use-modules (gnu)
|
||||||
|
(gnu home)
|
||||||
(gnu services)
|
(gnu services)
|
||||||
(gnu packages)
|
(gnu packages)
|
||||||
(gnu packages gnupg)
|
(gnu packages gnupg)
|
||||||
(gnu packages shells)
|
(gnu packages shells)
|
||||||
(gnu home)
|
|
||||||
(gnu home services)
|
(gnu home services)
|
||||||
(gnu home services guix)
|
(gnu home services guix)
|
||||||
(gnu home services shells)
|
(gnu home services shells)
|
||||||
|
@ -67,18 +67,18 @@ Packages that will show up in the home profile under =~/.guix-home/profile=
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** KDE packages
|
*** KDE packages
|
||||||
#+BEGIN_SRC scheme
|
#+BEGIN_SRC scheme
|
||||||
"kmail"
|
;; "kmail"
|
||||||
"krunner"
|
;; "krunner"
|
||||||
"akonadi"
|
;; "akonadi"
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** 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"
|
"kitty"
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** Mail
|
*** Mail
|
||||||
#+BEGIN_SRC scheme
|
#+BEGIN_SRC scheme
|
||||||
|
"icedove" ;; aka thunderbird
|
||||||
"getmail6"
|
"getmail6"
|
||||||
"notmuch"
|
"notmuch"
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
@ -176,7 +176,7 @@ Additional channels → nonguix (aka “The GUIX Channel That Shall Not Be Named
|
||||||
(simple-service 'variant-env-vars-service
|
(simple-service 'variant-env-vars-service
|
||||||
home-environment-variables-service-type
|
home-environment-variables-service-type
|
||||||
`(("GUIX_LOCPATH" . "$HOME/.guix-profile/lib/locale")
|
`(("GUIX_LOCPATH" . "$HOME/.guix-profile/lib/locale")
|
||||||
("NOTMUCH_PROFILE" . "$XDG_CONFIG_HOME/notmuch/notmuch.conf")
|
("NOTMUCH_CONFIG" . "$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"))))
|
||||||
|
@ -194,11 +194,14 @@ zsh (and/or completions and/or [[https://lists.gnu.org/archive/html/help-guix/20
|
||||||
(environment-variables
|
(environment-variables
|
||||||
'(("HISTFILE" . "$XDG_CONFIG_HOME/zsh/.history")
|
'(("HISTFILE" . "$XDG_CONFIG_HOME/zsh/.history")
|
||||||
("HISTSIZE" . "800000")
|
("HISTSIZE" . "800000")
|
||||||
("SAVEHIST" . "800000")))
|
("SAVEHIST" . "800000")))))
|
||||||
(zshenv
|
#+END_SRC
|
||||||
(list (local-file ".zshenv" "zshenv")))
|
the zsh dotfiles are managed by =home-dotfiles-service= for now.
|
||||||
(zshrc
|
#+BEGIN_SRC scheme
|
||||||
(list (local-file ".zshrc" "zshrc")))))
|
;; (zshenv
|
||||||
|
;; (list (local-file ".zshenv" "zshenv")))
|
||||||
|
;; (zshrc
|
||||||
|
;; (list (local-file ".zshrc" "zshrc")))))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
*** gnupg
|
*** gnupg
|
||||||
|
@ -217,7 +220,10 @@ zsh (and/or completions and/or [[https://lists.gnu.org/archive/html/help-guix/20
|
||||||
#+BEGIN_SRC scheme
|
#+BEGIN_SRC scheme
|
||||||
(service home-dotfiles-service-type
|
(service home-dotfiles-service-type
|
||||||
(home-dotfiles-configuration
|
(home-dotfiles-configuration
|
||||||
(directories (list "dotfiles"))))
|
(layout 'plain)
|
||||||
|
(directories (list "dotfiles"))
|
||||||
|
(excluded
|
||||||
|
'(".*~" ".*\\.swp" "\\.git" "\\.gitignore" ".zshenv"))))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
*** ssh & sundry
|
*** ssh & sundry
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
;; -*- mode: scheme; coding: utf-8; -*-
|
;; -*- mode: scheme; coding: utf-8; -*-
|
||||||
;;
|
;;
|
||||||
;; tangled from home-configuration.org on 2024-03-07 15:41:27+01:00)
|
;; tangled from home-configuration.org on 2024-03-19 15:08:39+01:00)
|
||||||
|
|
||||||
(use-modules (gnu)
|
(use-modules (gnu)
|
||||||
|
(gnu home)
|
||||||
(gnu services)
|
(gnu services)
|
||||||
(gnu packages)
|
(gnu packages)
|
||||||
(gnu packages gnupg)
|
(gnu packages gnupg)
|
||||||
(gnu packages shells)
|
(gnu packages shells)
|
||||||
(gnu home)
|
|
||||||
(gnu home services)
|
(gnu home services)
|
||||||
(gnu home services guix)
|
(gnu home services guix)
|
||||||
(gnu home services shells)
|
(gnu home services shells)
|
||||||
|
@ -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"
|
||||||
|
@ -35,13 +34,13 @@
|
||||||
"tree"
|
"tree"
|
||||||
"password-store"
|
"password-store"
|
||||||
|
|
||||||
"kmail"
|
;; "kmail"
|
||||||
"krunner"
|
;; "krunner"
|
||||||
"akonadi"
|
;; "akonadi"
|
||||||
|
|
||||||
;; "kitty-next"
|
|
||||||
"kitty"
|
"kitty"
|
||||||
|
|
||||||
|
"icedove" ;; aka thunderbird
|
||||||
"getmail6"
|
"getmail6"
|
||||||
"notmuch"
|
"notmuch"
|
||||||
|
|
||||||
|
@ -109,7 +108,7 @@
|
||||||
(simple-service 'variant-env-vars-service
|
(simple-service 'variant-env-vars-service
|
||||||
home-environment-variables-service-type
|
home-environment-variables-service-type
|
||||||
`(("GUIX_LOCPATH" . "$HOME/.guix-profile/lib/locale")
|
`(("GUIX_LOCPATH" . "$HOME/.guix-profile/lib/locale")
|
||||||
("NOTMUCH_PROFILE" . "$XDG_CONFIG_HOME/notmuch/notmuch.conf")
|
("NOTMUCH_CONFIG" . "$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"))))
|
||||||
|
@ -121,11 +120,12 @@
|
||||||
(environment-variables
|
(environment-variables
|
||||||
'(("HISTFILE" . "$XDG_CONFIG_HOME/zsh/.history")
|
'(("HISTFILE" . "$XDG_CONFIG_HOME/zsh/.history")
|
||||||
("HISTSIZE" . "800000")
|
("HISTSIZE" . "800000")
|
||||||
("SAVEHIST" . "800000")))
|
("SAVEHIST" . "800000")))))
|
||||||
(zshenv
|
|
||||||
(list (local-file ".zshenv" "zshenv")))
|
;; (zshenv
|
||||||
(zshrc
|
;; (list (local-file ".zshenv" "zshenv")))
|
||||||
(list (local-file ".zshrc" "zshrc")))))
|
;; (zshrc
|
||||||
|
;; (list (local-file ".zshrc" "zshrc")))))
|
||||||
|
|
||||||
(service home-gpg-agent-service-type
|
(service home-gpg-agent-service-type
|
||||||
(home-gpg-agent-configuration
|
(home-gpg-agent-configuration
|
||||||
|
@ -135,7 +135,10 @@
|
||||||
|
|
||||||
(service home-dotfiles-service-type
|
(service home-dotfiles-service-type
|
||||||
(home-dotfiles-configuration
|
(home-dotfiles-configuration
|
||||||
(directories (list "dotfiles"))))
|
(layout 'plain)
|
||||||
|
(directories (list "dotfiles"))
|
||||||
|
(excluded
|
||||||
|
'(".*~" ".*\\.swp" "\\.git" "\\.gitignore" ".zshenv"))))
|
||||||
|
|
||||||
;; ssh config in 'dotfiles'
|
;; ssh config in 'dotfiles'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue