diff options
author | EuAndreh <eu@euandre.org> | 2022-11-13 22:01:01 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-11-13 22:01:01 -0300 |
commit | 58a29c5742e7d056316833ba9dd56544bf1ffb3b (patch) | |
tree | 75ee009d9aea17961b50a1a11672aa2604f56128 | |
parent | etc/guix/home.scm: Add "gnote" package (diff) | |
download | dotfiles-58a29c5742e7d056316833ba9dd56544bf1ffb3b.tar.gz dotfiles-58a29c5742e7d056316833ba9dd56544bf1ffb3b.tar.xz |
etc/guix/system.scm: Use list literal over using (list ...)
-rw-r--r-- | etc/guix/system.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/guix/system.scm b/etc/guix/system.scm index 6e9e1b8..f2d389f 100644 --- a/etc/guix/system.scm +++ b/etc/guix/system.scm @@ -175,7 +175,7 @@ (bootloader (bootloader-configuration (bootloader grub-efi-bootloader) - (targets (list "/boot/efi")) + (targets '("/boot/efi")) (keyboard-layout keyboard-layout))) (mapped-devices (list |