Fixed secrets. Try to fix disks mount

This commit is contained in:
Raphaël Numbus
2026-01-04 10:28:03 +01:00
parent 234130fe02
commit 81ec01b571
3 changed files with 18 additions and 18 deletions
+2 -2
View File
@@ -13,13 +13,13 @@
settings = {
keyFile = "/etc/secrets/disks/content-${j}";
allowDiscards = ${ALLOW_DISCARDS:-false};
options = [ "noauto" ];
crypttabExtraOpts = "nofail";
};
content = {
type = "filesystem";
format = "xfs";
mountpoint = "/mnt/content-${j}";
mountOptions = [ "noauto" "nofail" ];
mountOptions = [ "nofail" "defaults" ];
};
};
};
+2 -2
View File
@@ -13,13 +13,13 @@
settings = {
keyFile = "/etc/secrets/disks/parity-${j}";
allowDiscards = ${ALLOW_DISCARDS:-false};
options = [ "noauto" ];
crypttabExtraOpts = "nofail";
};
content = {
type = "filesystem";
format = "xfs";
mountpoint = "/mnt/parity-${j}";
mountOptions = [ "noauto" "nofail" ];
mountOptions = [ "nofail" "defaults" ];
};
};
};