diff options
author | Collin J. Doering | 2024-12-06 18:18:20 -0500 |
---|---|---|
committer | Pjotr Prins | 2024-12-16 10:12:15 +0100 |
commit | 6a3fb67db2f0f480894407fdacf4ac3995e36306 (patch) | |
tree | bb47ac201787c8115f622977fa7a8178833078d3 /.guix/guix-na/config/balg02.scm | |
parent | 3bdbabd588af3d404ecdc88d653e3445811b834e (diff) | |
download | guix-north-america-6a3fb67db2f0f480894407fdacf4ac3995e36306.tar.gz |
balg02: Correct missing MiB reference in previous commit - a24f14c
Diffstat (limited to '.guix/guix-na/config/balg02.scm')
-rw-r--r-- | .guix/guix-na/config/balg02.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.guix/guix-na/config/balg02.scm b/.guix/guix-na/config/balg02.scm index fff86d3..642e396 100644 --- a/.guix/guix-na/config/balg02.scm +++ b/.guix/guix-na/config/balg02.scm @@ -31,6 +31,11 @@ #:use-module (gnu services web) #:export (balg02 %system)) +(define KiB (expt 2 10)) +(define MiB (* KiB KiB)) +(define GiB (* MiB KiB)) +(define TiB (* GiB KiB)) + (define %cuirass-specs #~(list (specification (name "guix") |