modules/shared/nix-daemon: fix asGB

This commit is contained in:
zowoq 2023-09-05 17:27:20 +10:00
parent d4343f7ebe
commit 885ea336a5

View file

@ -1,7 +1,7 @@
{ pkgs, ... }:
let
asGB = size: toString (size * 1024 * 1024);
asGB = size: toString (size * 1024 * 1024 * 1024);
in
{
nix = {