From 96aa2c28944b3ec5aaae5013c4c8230cca5412af Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Wed, 26 Jun 2024 10:32:57 -0500 Subject: [PATCH] list of strings --- nixos/profiles/disko-nixos.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/profiles/disko-nixos.nix b/nixos/profiles/disko-nixos.nix index 1d4a115..60b5841 100644 --- a/nixos/profiles/disko-nixos.nix +++ b/nixos/profiles/disko-nixos.nix @@ -37,9 +37,9 @@ mountpoint = "none"; acltype = "posixacl"; }; - mountOptions = { - ashift = "12"; - }; + mountOptions = [ + "ashift=12" + ]; postCreateHook = "zfs list -t snapshot -H -o name | grep -E '^zroot@blank$' || zfs snapshot zroot@blank";