From 044871d8502edfc237167de5d5c300891bd232aa Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Mon, 24 Jun 2024 14:22:54 -0500 Subject: [PATCH] Of type string. --- nixos/profiles/disko-nixos.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nixos/profiles/disko-nixos.nix b/nixos/profiles/disko-nixos.nix index 8f1d205..bd2677d 100644 --- a/nixos/profiles/disko-nixos.nix +++ b/nixos/profiles/disko-nixos.nix @@ -45,7 +45,7 @@ type = "zfs_fs"; mountpoint = "/"; options = { - ashift = 12; + ashift = "12"; zfsutil = ""; }; }; @@ -54,7 +54,7 @@ type = "zfs_fs"; mountpoint = "/nix"; options = { - ashift = 12; + ashift = "12"; zfsutil = ""; }; }; @@ -63,7 +63,7 @@ type = "zfs_fs"; mountpoint = "/var"; options = { - ashift = 12; + ashift = "12"; zfsutil = ""; }; }; @@ -72,7 +72,7 @@ type = "zfs_fs"; mountpoint = "/home"; options = { - ashift = 12; + ashift = "12"; "com.sun:auto-snapshot" = "true"; zfsutil = ""; };