From c8704414d4f4f7cf5fecb1b295f3eb7d68a31f49 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Mon, 22 Jan 2024 20:34:16 -0500 Subject: [PATCH] Infini-STICK: fix typo in tmpfs size --- hosts/Infini-STICK/filesystems.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/Infini-STICK/filesystems.nix b/hosts/Infini-STICK/filesystems.nix index 4c9f3ec..f22d5c0 100644 --- a/hosts/Infini-STICK/filesystems.nix +++ b/hosts/Infini-STICK/filesystems.nix @@ -17,7 +17,7 @@ in "/" = { device = "none"; fsType = "tmpfs"; - options = [ "defaults" "size=4GB" "mode=755" ]; + options = [ "defaults" "size=4G" "mode=755" ]; }; "/media/main" = mkMain' [ ];