From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:38495) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jHNze-0008Cz-V1 for guix-patches@gnu.org; Thu, 26 Mar 2020 04:36:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jHNze-0005we-3t for guix-patches@gnu.org; Thu, 26 Mar 2020 04:36:02 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:52112) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jHNze-0005wU-1V for guix-patches@gnu.org; Thu, 26 Mar 2020 04:36:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jHNzd-0001vB-VE for guix-patches@gnu.org; Thu, 26 Mar 2020 04:36:01 -0400 Subject: [bug#40236] [PATCH] doc: Suggest Btrfs with compression instead of ext4 for root partition. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:38462) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jHNzG-0008B4-DW for guix-patches@gnu.org; Thu, 26 Mar 2020 04:35:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jHNzF-0005pj-1L for guix-patches@gnu.org; Thu, 26 Mar 2020 04:35:37 -0400 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:58727) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jHNzE-0005oe-S9 for guix-patches@gnu.org; Thu, 26 Mar 2020 04:35:36 -0400 Received: from localhost.localdomain (moi44-1-78-199-129-170.fbx.proxad.net [78.199.129.170]) (Authenticated sender: mail@ambrevar.xyz) by relay5-d.mail.gandi.net (Postfix) with ESMTPSA id D76751C0009 for ; Thu, 26 Mar 2020 08:35:33 +0000 (UTC) From: Pierre Neidhardt Date: Thu, 26 Mar 2020 09:35:24 +0100 Message-Id: <20200326083524.20275-1-mail@ambrevar.xyz> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 40236@debbugs.gnu.org * gnu/system/examples/desktop.tmpl: Adjust root file-system to use Btrfs. --- gnu/system/examples/desktop.tmpl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/system/examples/desktop.tmpl b/gnu/system/examples/desktop.tmpl index 3931bad60d..e61e8064cd 100644 --- a/gnu/system/examples/desktop.tmpl +++ b/gnu/system/examples/desktop.tmpl @@ -34,7 +34,8 @@ (list (file-system (device (file-system-label "my-root")) (mount-point "/") - (type "ext4") + (type "btrfs") + (options "subvol=rootfs,compress=zstd") (dependencies mapped-devices)) (file-system (device (uuid "1234-ABCD" 'fat)) -- 2.25.1