diff options
-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) |