diff options
| author | EuAndreh <eu@euandre.org> | 2023-02-09 19:02:50 -0300 |
|---|---|---|
| committer | EuAndreh <eu@euandre.org> | 2023-02-09 19:02:50 -0300 |
| commit | ebe9d56805ca51ad56ef1c739d4054714e0ea64a (patch) | |
| tree | 9ac357a66298c5905e71dd326ee9663d5c1397b9 /etc | |
| parent | bin/{httpno,menu}: Add extra disable markers for new ShellCheck version (diff) | |
| download | dotfiles-ebe9d56805ca51ad56ef1c739d4054714e0ea64a.tar.gz dotfiles-ebe9d56805ca51ad56ef1c739d4054714e0ea64a.tar.xz | |
etc/guix/home.scm: Add "work-packages" variable
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/guix/home.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/etc/guix/home.scm b/etc/guix/home.scm index d6e897a..470e2dc 100644 --- a/etc/guix/home.scm +++ b/etc/guix/home.scm @@ -179,6 +179,10 @@ (define (xdg path) (string-append xdg-prefix "/" path)) +(define work-packages + (map (compose list specification->package+output symbol->string) + '(awscli@1))) + (home-environment (packages (append @@ -514,7 +518,8 @@ (hunspell-dictionary-utf8 "fr") (hunspell-dictionary-utf8 "eo") (script "cronjob" (slurp (string-append (getenv "XDG_CONFIG_HOME") - "/sh/cronjob.sh")))))) + "/sh/cronjob.sh")))) + work-packages)) (services (list (service (home-service 'clipmenu clipmenu "/bin/clipmenud")) |
