diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-02-01 12:30:56 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-02-01 12:36:41 +0100 |
commit | 357db1f91de9b3eb14be52a98cc804cdfd284f6d (patch) | |
tree | f167ad4bddf61597911f9da6a23fd88e12cf1a4e /gnu/system/grub.scm | |
parent | ae763b5b0b7d5e7316a3d0efe991fe8ab2261031 (diff) | |
download | guix-357db1f91de9b3eb14be52a98cc804cdfd284f6d.tar.gz |
system: More 'file-append' instead of #~(string-append #$thing …).
* gnu/system/shadow.scm (<user-account>)[shell]: Use 'file-append'. (%base-user-accounts): Likewise. * gnu/system/grub.scm (%background-image): Likewise.
Diffstat (limited to 'gnu/system/grub.scm')
-rw-r--r-- | gnu/system/grub.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/system/grub.scm b/gnu/system/grub.scm index 067b291a5c..7df7d4615a 100644 --- a/gnu/system/grub.scm +++ b/gnu/system/grub.scm @@ -94,8 +94,8 @@ denoting a file name." (define %background-image (grub-image (aspect-ratio 4/3) - (file #~(string-append #$%artwork-repository - "/grub/GuixSD-fully-black-4-3.svg")))) + (file (file-append %artwork-repository + "/grub/GuixSD-fully-black-4-3.svg")))) (define %default-theme ;; Default theme contributed by Felipe López. |