From a26bfa181a7f7eefbad4e6b7a38ff7bf72a72912 Mon Sep 17 00:00:00 2001
From: zowoq <59103226+zowoq@users.noreply.github.com>
Date: Mon, 9 Dec 2024 13:36:33 +1000
Subject: [PATCH] format tree

---
 modules/nixos/disko-zfs.nix | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/modules/nixos/disko-zfs.nix b/modules/nixos/disko-zfs.nix
index 5812b67..41aeaa2 100644
--- a/modules/nixos/disko-zfs.nix
+++ b/modules/nixos/disko-zfs.nix
@@ -10,7 +10,8 @@
   };
 
   # the default zpool import services somehow times out while this import works fine?
-  boot.initrd.systemd.services.zfs-import-zroot.serviceConfig.ExecStartPre = "${config.boot.zfs.package}/bin/zpool import -N -f zroot";
+  boot.initrd.systemd.services.zfs-import-zroot.serviceConfig.ExecStartPre =
+    "${config.boot.zfs.package}/bin/zpool import -N -f zroot";
 
   # Sometimes fails after the first try, with duplicate pool name errors
   boot.initrd.systemd.services.zfs-import-zroot.serviceConfig.Restart = "on-failure";