diff options
author | EuAndreh <eu@euandre.org> | 2022-05-21 10:04:47 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-05-21 10:04:47 -0300 |
commit | b5a97ccffb1139a08ba284982f3a1394738352b9 (patch) | |
tree | 2a65bff3c966f9a2e9f573537774f1cba3239312 | |
parent | bin/e: Launch fzf prompt with personal files when no argument is given (diff) | |
download | dotfiles-b5a97ccffb1139a08ba284982f3a1394738352b9.tar.gz dotfiles-b5a97ccffb1139a08ba284982f3a1394738352b9.tar.xz |
etc/guix/{home,system}.scm: Use proper packaged "guile-heredoc" package
-rw-r--r-- | etc/guix/home.scm | 3 | ||||
-rw-r--r-- | etc/guix/system.scm | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/etc/guix/home.scm b/etc/guix/home.scm index 5e56009..e4ebe58 100644 --- a/etc/guix/home.scm +++ b/etc/guix/home.scm @@ -1,5 +1,5 @@ (use-modules - (curth0) + ((xyz euandreh heredoc) #:prefix heredoc:) (gnu home) (gnu home services) (gnu home services mcron) @@ -20,6 +20,7 @@ (guix modules) (guix packages) (guix utils)) +(heredoc:enable-syntax) (define msmtp-non-hardcoded (package diff --git a/etc/guix/system.scm b/etc/guix/system.scm index e4627cc..b568d66 100644 --- a/etc/guix/system.scm +++ b/etc/guix/system.scm @@ -1,5 +1,5 @@ (use-modules - (curth0) + ((xyz euandreh heredoc) #:prefix heredoc:) (ice-9 rdelim) (gnu bootloader) (gnu bootloader grub) @@ -20,6 +20,7 @@ (nongnu packages linux) (nongnu system linux-initrd) (srfi srfi-1)) +(heredoc:enable-syntax) (operating-system (kernel linux) |