diff options
author | Collin J. Doering | 2024-12-06 18:18:20 -0500 |
---|---|---|
committer | Collin J. Doering | 2024-12-06 18:18:20 -0500 |
commit | 405fcbe9cb095a7f8766be765c45af688685444b (patch) | |
tree | ead82960727426f2936c48ae85aa250d97674ff0 | |
parent | a24f14cad3bc6ce561c9004cf71892f03f0a6fc5 (diff) | |
download | guix-north-america-405fcbe9cb095a7f8766be765c45af688685444b.tar.gz |
balg02: Correct missing MiB reference in previous commit - a24f14c
-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") |