diff options
-rw-r--r-- | .guix/guix-na/config/balg02.scm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/.guix/guix-na/config/balg02.scm b/.guix/guix-na/config/balg02.scm index fe25f27..88f5634 100644 --- a/.guix/guix-na/config/balg02.scm +++ b/.guix/guix-na/config/balg02.scm @@ -470,7 +470,8 @@ synonymous IETF language tags that should be mapped to the same $lang." (build-accounts (* build-accounts-to-max-jobs-ratio max-jobs)) (extra-options (list "--max-jobs" (number->string max-jobs) "--cores" (number->string cores) - "--gc-keep-derivations")))) + "--gc-keep-derivations")) + (tmpdir "/var/tmp"))) (define (balg02 efi-boot-uuid) (operating-system @@ -507,7 +508,12 @@ synonymous IETF language tags that should be mapped to the same $lang." (file-system (device (uuid efi-boot-uuid 'fat)) (mount-point "/boot/efi") - (type "vfat"))) + (type "vfat")) + (file-system + (device "none") + (mount-point "/tmp") + (type "tmpfs") + (check? #f))) %base-file-systems)) (swap-devices |