From 392d16843f8ca7a2190c81d97915aca3022f6252 Mon Sep 17 00:00:00 2001 From: Qubasa Date: Fri, 13 Sep 2024 15:48:57 +0200 Subject: [PATCH] flash: Use f2fs for installer --- pkgs/installer/flake-module.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/installer/flake-module.nix b/pkgs/installer/flake-module.nix index ba425d7f3..88373da53 100644 --- a/pkgs/installer/flake-module.nix +++ b/pkgs/installer/flake-module.nix @@ -42,11 +42,12 @@ let mountpoint = "/boot"; }; }; - "root" = { - size = "100%"; + root = { + name = "root"; + end = "-0"; content = { type = "filesystem"; - format = "ext4"; + format = "f2fs"; mountpoint = "/"; }; };