diff options
author | EuAndreh <eu@euandre.org> | 2024-12-18 10:38:04 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-12-18 10:38:04 -0300 |
commit | d7bc38b1b4033dcf3c17fa303d7b260ec1e654d9 (patch) | |
tree | 66e8da958106dfa6560d2dc24f1a984444dc1172 /etc/guix/home.scm | |
parent | etc/tmux/tmux.conf: Increase save interval to once a day (diff) | |
download | dotfiles-d7bc38b1b4033dcf3c17fa303d7b260ec1e654d9.tar.gz dotfiles-d7bc38b1b4033dcf3c17fa303d7b260ec1e654d9.tar.xz |
etc/guix/home.scm: Simplify definition of gm2
Diffstat (limited to 'etc/guix/home.scm')
-rw-r--r-- | etc/guix/home.scm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/etc/guix/home.scm b/etc/guix/home.scm index 3655dff..cb9e021 100644 --- a/etc/guix/home.scm +++ b/etc/guix/home.scm @@ -39,16 +39,13 @@ (arguments (substitute-keyword-arguments (package-arguments gcc-14) ((#:modules modules %default-gnu-modules) - (append - '((ice-9 regex) - (srfi srfi-1)) - modules)) + (append '((ice-9 regex)) modules)) ((#:configure-flags flags) #~(append (list "--enable-languages=m2") - (remove (lambda (s) - (string-match "--enable-languages.*" s)) + (filter (lambda (s) + (not (string-match "--enable-languages.*" s))) #$flags))))) (native-inputs (modify-inputs (package-native-inputs gcc-14) |