guix-config/home-configuration.scm

95 lines
4.7 KiB
Scheme
Raw Permalink Normal View History

2024-11-29 16:55:11 +00:00
;; This "home-environment" file can be passed to 'guix home reconfigure'
;; to reproduce the content of your profile. This is "symbolic": it only
;; specifies package names. To reproduce the exact same profile, you also
;; need to capture the channels being used, as returned by "guix describe".
;; See the "Replicating Guix" section in the manual.
(use-modules (gnu home)
(gnu packages)
2024-11-29 18:06:28 +00:00
(gnu packages gnupg)
2024-11-29 16:55:11 +00:00
(gnu services)
(guix gexp)
2024-12-01 14:32:27 +00:00
(guix channels)
2024-11-29 16:55:11 +00:00
(gnu home services shells)
2024-11-29 18:46:38 +00:00
(gnu home services dotfiles)
(gnu home services gnupg)
2024-12-01 14:32:27 +00:00
(gnu home services shepherd)
(gnu home services guix))
2024-11-29 16:55:11 +00:00
(home-environment
2024-11-29 18:06:28 +00:00
;; Below is the list of packages that will show up in your
;; Home profile, under ~/.guix-home/profile.
2024-12-01 11:36:47 +00:00
(packages (specifications->packages (list "cmake"
"emacs-no-x"
"gcc-toolchain"
2024-11-29 18:46:38 +00:00
"git"
"git-crypt"
"git-lfs"
"glibc-locales"
"gnupg"
2024-12-01 11:36:47 +00:00
"go@1.23.2"
2024-11-29 16:55:11 +00:00
"guile"
"guile-algorithms"
"guile-config"
"guile-dsv"
"guile-fibers"
"guile-file-names"
"guile-filesystem"
"guile-gcrypt"
"guile-gnutls"
"guile-ini"
"guile-irregex"
"guile-json"
"guile-lib"
"guile-libyaml"
"guile-quickcheck"
"guile-readline"
"guile-semver"
"guile-sqlite3"
"guile-srfi-145"
"guile-srfi-158"
"guile-srfi-197"
"guile-srfi-235"
"guile-ssh"
"guile-tap"
"ispell"
2024-12-01 11:36:47 +00:00
"libvterm"
"make"
2024-11-29 18:46:38 +00:00
"nss-certs"
"pass-git-helper"
"password-store"
2024-11-29 18:06:28 +00:00
"pinentry-emacs"
2024-11-29 18:46:38 +00:00
"recutils")))
2024-11-29 16:55:11 +00:00
2024-11-29 18:06:28 +00:00
;; 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
2024-11-29 18:46:38 +00:00
(guix-defaults? #t)
(environment-variables '(("GPG_TTY" . "$(tty)")
("ALTERNATE_EDITOR" . "")
("EDITOR" . "emacsclient --tty")
("VISUAL" . "emacsclient")))
(aliases '())))
2024-11-29 18:46:38 +00:00
(service home-dotfiles-service-type
(home-dotfiles-configuration
(directories '("./dotfiles"))
(layout 'stow)))
(service home-gpg-agent-service-type
(home-gpg-agent-configuration
(default-cache-ttl 7200)
(max-cache-ttl 14400)))
2024-12-01 14:32:27 +00:00
(service home-shepherd-service-type)
(simple-service 'variant-packages-type
home-channels-service-type
(list (channel
(name 'ray1729)
(url "https://forge.1729.org.uk/ray/guix-packages.git")
(branch "main")
(introduction
(make-channel-introduction
"e4656e91d3eec0d4d3a3f752badc4b8cea4b1502"
(openpgp-fingerprint
"2E19 CF82 55B6 A04D 5550 1F2C 043F 786C 4CD6 81B8")))))))))