Skip to content

Commit

Permalink
fix(nuc): Remove mountpoint on pool
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Nov 25, 2023
1 parent fb5fc9e commit 83da283
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions hosts/nuc/disko.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,11 @@
zroot = {
type = "zpool";
rootFsOptions = {
compression = "zstd";
compression = "on";
"com.sun:auto-snapshot" = "false";
mountpoint = "none";
canmount = "off";
};
mountpoint = "/";
postCreateHook = "zfs snapshot zroot@blank";
datasets = {
"system" = {
Expand All @@ -52,6 +53,10 @@
"system/var" = {
type = "zfs_fs";
mountpoint = "/var";
options = {
xattr = "sa";
acltype = "posixacl";
};
};
"local/nix" = {
type = "zfs_fs";
Expand Down

0 comments on commit 83da283

Please sign in to comment.