Compare commits

..

No commits in common. "11c6b37e7d142d0b2025180f70c2646acc3f647e" and "89b0a2cd684dbd9274fa16869e4e303d8f5f8bf8" have entirely different histories.

2 changed files with 22 additions and 25 deletions

View file

@ -38,8 +38,3 @@ export GPG_TTY
export ALTERNATE_EDITOR=""
export EDITOR="emacsclient --tty"
export VISUAL="emacsclient"
# Ensure user shepherd is running
if [[ ! -S ${XDG_RUNTIME_DIR-$HOME/.local/run}/shepherd/socket ]]; then
shepherd
fi

View file

@ -10,19 +10,19 @@
(gnu services)
(guix gexp)
(gnu home services shells)
(gnu home services dotfiles)
(gnu home services gnupg))
(gnu home services dotfiles)
(gnu home services gnupg))
(home-environment
;; Below is the list of packages that will show up in your
;; Home profile, under ~/.guix-home/profile.
(packages (specifications->packages (list "emacs-no-x"
"git"
"git-crypt"
"git-lfs"
"glibc-locales"
"gnupg"
;;"go@1.23.2"
"git"
"git-crypt"
"git-lfs"
"glibc-locales"
"gnupg"
;;"go@1.23.2"
"guile"
"guile-algorithms"
"guile-config"
@ -47,20 +47,19 @@
"guile-srfi-235"
"guile-ssh"
"guile-tap"
"ispell"
"nss-certs"
"pass-git-helper"
"password-store"
"nss-certs"
"pass-git-helper"
"password-store"
"pinentry-emacs"
"recutils")))
"recutils")))
;; Below is the list of Home services. To search for available
;; services, run 'guix home search KEYWORD' in a terminal.
(services
(list (service home-bash-service-type
(home-bash-configuration
(guix-defaults? #t)
(environment-variables '(("XDG_RUNTIME_DIR" . "/home/ray/.local/run")))
(guix-defaults? #t)
(environment-variables '(("XDG_RUNTIME_DIR" . "/home/ray/.local/run")))
(aliases '(("grep" . "grep --color=auto") ("ll" . "ls -l")
("ls" . "ls -p --color=auto")))
(bashrc (list (local-file
@ -69,8 +68,11 @@
(bash-profile (list (local-file
"/home/ray/Workspace/guix-config/.bash_profile"
"bash_profile")))))
(service home-dotfiles-service-type
(home-dotfiles-configuration
(directories '("./dotfiles"))
(layout 'stow)))
(service home-gpg-agent-service-type))))
(service home-dotfiles-service-type
(home-dotfiles-configuration
(directories '("./dotfiles"))
(layout 'stow)))
(service home-gpg-agent-service-type
(home-gpg-agent-configuration
(pinentry-program
(file-append pinentry-emacs "/bin/pinentry-emacs")))))))