Of type string.

This commit is contained in:
Joseph Hanson 2024-06-24 14:22:54 -05:00
parent 5c5c4afb14
commit 044871d850
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o

View file

@ -45,7 +45,7 @@
type = "zfs_fs"; type = "zfs_fs";
mountpoint = "/"; mountpoint = "/";
options = { options = {
ashift = 12; ashift = "12";
zfsutil = ""; zfsutil = "";
}; };
}; };
@ -54,7 +54,7 @@
type = "zfs_fs"; type = "zfs_fs";
mountpoint = "/nix"; mountpoint = "/nix";
options = { options = {
ashift = 12; ashift = "12";
zfsutil = ""; zfsutil = "";
}; };
}; };
@ -63,7 +63,7 @@
type = "zfs_fs"; type = "zfs_fs";
mountpoint = "/var"; mountpoint = "/var";
options = { options = {
ashift = 12; ashift = "12";
zfsutil = ""; zfsutil = "";
}; };
}; };
@ -72,7 +72,7 @@
type = "zfs_fs"; type = "zfs_fs";
mountpoint = "/home"; mountpoint = "/home";
options = { options = {
ashift = 12; ashift = "12";
"com.sun:auto-snapshot" = "true"; "com.sun:auto-snapshot" = "true";
zfsutil = ""; zfsutil = "";
}; };