about summary refs log tree commit diff
path: root/nixos/modules/tasks/filesystems
diff options
context:
space:
mode:
authorWill Fancher <elvishjerricco@gmail.com>2023-05-29 16:14:55 -0400
committerWill Fancher <elvishjerricco@gmail.com>2023-06-04 22:57:22 -0400
commitb497502357c0f944c839e645097f44a7c3279971 (patch)
tree8e14ac025d8ba5e156986d9d2307351e3590684d /nixos/modules/tasks/filesystems
parent5176a4f11356a338331d82e63563f8510b67317d (diff)
downloadnixlib-b497502357c0f944c839e645097f44a7c3279971.tar
nixlib-b497502357c0f944c839e645097f44a7c3279971.tar.gz
nixlib-b497502357c0f944c839e645097f44a7c3279971.tar.bz2
nixlib-b497502357c0f944c839e645097f44a7c3279971.tar.lz
nixlib-b497502357c0f944c839e645097f44a7c3279971.tar.xz
nixlib-b497502357c0f944c839e645097f44a7c3279971.tar.zst
nixlib-b497502357c0f944c839e645097f44a7c3279971.zip
nixos: Use systemd-growfs for autoResize
Diffstat (limited to 'nixos/modules/tasks/filesystems')
-rw-r--r--nixos/modules/tasks/filesystems/f2fs.nix5
1 files changed, 0 insertions, 5 deletions
diff --git a/nixos/modules/tasks/filesystems/f2fs.nix b/nixos/modules/tasks/filesystems/f2fs.nix
index 1d52861aa39d..035784f43df8 100644
--- a/nixos/modules/tasks/filesystems/f2fs.nix
+++ b/nixos/modules/tasks/filesystems/f2fs.nix
@@ -15,11 +15,6 @@ in
 
     boot.initrd.extraUtilsCommands = mkIf (inInitrd && !config.boot.initrd.systemd.enable) ''
       copy_bin_and_libs ${pkgs.f2fs-tools}/sbin/fsck.f2fs
-      ${optionalString (any (fs: fs.autoResize) fileSystems) ''
-        # We need f2fs-tools' tools to resize filesystems
-        copy_bin_and_libs ${pkgs.f2fs-tools}/sbin/resize.f2fs
-      ''}
-
     '';
   };
 }