From 68f7aee44608d8c3b6bd8a333033f8ffe4083c0a Mon Sep 17 00:00:00 2001 From: Florian Sesser <florian@leastauthority.com> Date: Tue, 24 Sep 2024 15:23:48 +0000 Subject: [PATCH] 1G is 1024M, fix typo/braino --- morph/lib/issuer-aws.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/morph/lib/issuer-aws.nix b/morph/lib/issuer-aws.nix index b32d83eb..9767e1ad 100644 --- a/morph/lib/issuer-aws.nix +++ b/morph/lib/issuer-aws.nix @@ -9,7 +9,7 @@ boot.kernel.sysctl = { "vm.swappiness" = 1; }; swapDevices = [ { device = "/var/swapfile"; - size = 1028; # megabytes + size = 1024; # megabytes randomEncryption = true; } ]; -- GitLab