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
|
||||
(use-modules (gnu)
|
||||
(gnu home)
|
||||
(gnu services)
|
||||
(gnu packages)
|
||||
(gnu packages gnupg)
|
||||
(gnu packages shells)
|
||||
(gnu home)
|
||||
(gnu home services)
|
||||
(gnu home services guix)
|
||||
(gnu home services shells)
|
||||
|
@ -67,18 +67,18 @@ Packages that will show up in the home profile under =~/.guix-home/profile=
|
|||
#+END_SRC
|
||||
*** KDE packages
|
||||
#+BEGIN_SRC scheme
|
||||
"kmail"
|
||||
"krunner"
|
||||
"akonadi"
|
||||
;; "kmail"
|
||||
;; "krunner"
|
||||
;; "akonadi"
|
||||
#+END_SRC
|
||||
*** terminal
|
||||
kitty config is in =dotfiles/kitty/kitty.conf=
|
||||
#+BEGIN_SRC scheme
|
||||
;; "kitty-next"
|
||||
"kitty"
|
||||
#+END_SRC
|
||||
*** Mail
|
||||
#+BEGIN_SRC scheme
|
||||
"icedove" ;; aka thunderbird
|
||||
"getmail6"
|
||||
"notmuch"
|
||||
#+END_SRC
|
||||
|
@ -176,7 +176,7 @@ Additional channels → nonguix (aka “The GUIX Channel That Shall Not Be Named
|
|||
(simple-service 'variant-env-vars-service
|
||||
home-environment-variables-service-type
|
||||
`(("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")
|
||||
("GPG_TTY" . "$TTY")
|
||||
("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
|
||||
'(("HISTFILE" . "$XDG_CONFIG_HOME/zsh/.history")
|
||||
("HISTSIZE" . "800000")
|
||||
("SAVEHIST" . "800000")))
|
||||
(zshenv
|
||||
(list (local-file ".zshenv" "zshenv")))
|
||||
(zshrc
|
||||
(list (local-file ".zshrc" "zshrc")))))
|
||||
("SAVEHIST" . "800000")))))
|
||||
#+END_SRC
|
||||
the zsh dotfiles are managed by =home-dotfiles-service= for now.
|
||||
#+BEGIN_SRC scheme
|
||||
;; (zshenv
|
||||
;; (list (local-file ".zshenv" "zshenv")))
|
||||
;; (zshrc
|
||||
;; (list (local-file ".zshrc" "zshrc")))))
|
||||
#+END_SRC
|
||||
|
||||
*** gnupg
|
||||
|
@ -217,7 +220,10 @@ zsh (and/or completions and/or [[https://lists.gnu.org/archive/html/help-guix/20
|
|||
#+BEGIN_SRC scheme
|
||||
(service home-dotfiles-service-type
|
||||
(home-dotfiles-configuration
|
||||
(directories (list "dotfiles"))))
|
||||
(layout 'plain)
|
||||
(directories (list "dotfiles"))
|
||||
(excluded
|
||||
'(".*~" ".*\\.swp" "\\.git" "\\.gitignore" ".zshenv"))))
|
||||
#+END_SRC
|
||||
|
||||
*** ssh & sundry
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
;; -*- 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)
|
||||
(gnu home)
|
||||
(gnu services)
|
||||
(gnu packages)
|
||||
(gnu packages gnupg)
|
||||
(gnu packages shells)
|
||||
(gnu home)
|
||||
(gnu home services)
|
||||
(gnu home services guix)
|
||||
(gnu home services shells)
|
||||
|
@ -21,7 +21,6 @@
|
|||
(home-environment
|
||||
(packages (specifications->packages
|
||||
(list
|
||||
|
||||
"nordic-theme"
|
||||
"firefox"
|
||||
"emacs-guix"
|
||||
|
@ -35,13 +34,13 @@
|
|||
"tree"
|
||||
"password-store"
|
||||
|
||||
"kmail"
|
||||
"krunner"
|
||||
"akonadi"
|
||||
;; "kmail"
|
||||
;; "krunner"
|
||||
;; "akonadi"
|
||||
|
||||
;; "kitty-next"
|
||||
"kitty"
|
||||
|
||||
"icedove" ;; aka thunderbird
|
||||
"getmail6"
|
||||
"notmuch"
|
||||
|
||||
|
@ -109,7 +108,7 @@
|
|||
(simple-service 'variant-env-vars-service
|
||||
home-environment-variables-service-type
|
||||
`(("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")
|
||||
("GPG_TTY" . "$TTY")
|
||||
("SHELL" . ,(file-append zsh "/bin/zsh"))))
|
||||
|
@ -121,11 +120,12 @@
|
|||
(environment-variables
|
||||
'(("HISTFILE" . "$XDG_CONFIG_HOME/zsh/.history")
|
||||
("HISTSIZE" . "800000")
|
||||
("SAVEHIST" . "800000")))
|
||||
(zshenv
|
||||
(list (local-file ".zshenv" "zshenv")))
|
||||
(zshrc
|
||||
(list (local-file ".zshrc" "zshrc")))))
|
||||
("SAVEHIST" . "800000")))))
|
||||
|
||||
;; (zshenv
|
||||
;; (list (local-file ".zshenv" "zshenv")))
|
||||
;; (zshrc
|
||||
;; (list (local-file ".zshrc" "zshrc")))))
|
||||
|
||||
(service home-gpg-agent-service-type
|
||||
(home-gpg-agent-configuration
|
||||
|
@ -135,7 +135,10 @@
|
|||
|
||||
(service home-dotfiles-service-type
|
||||
(home-dotfiles-configuration
|
||||
(directories (list "dotfiles"))))
|
||||
(layout 'plain)
|
||||
(directories (list "dotfiles"))
|
||||
(excluded
|
||||
'(".*~" ".*\\.swp" "\\.git" "\\.gitignore" ".zshenv"))))
|
||||
|
||||
;; ssh config in 'dotfiles'
|
||||
|
||||
|
|
Loading…
Reference in a new issue