I got a new and larger HDD to store media, in my configuration I have this:
# hardware-configuration.nix
fileSystems."/8tb" = {
device = "/dev/disk/by-uuid/2746ca46-83f6-4d1f-8c76-f60d843467c9";
fsType = "ext4";
};
# configuration.nix
fileSystems = {
"/biblioteca" = {
fsType = "fuse.bindfs";
device = "/8tb";
depends = [ "/8tb" ];
options = [
"force-user=media"
"force-group=users"
"create-for-user=media"
"create-for-group=users"
"create-with-perms=u+rwX,g+rwX,o+rX"
];
};
};
but it fails to mount during boot:
mar 25 13:57:52 woody systemd[1]: biblioteca.mount: Mount process exited, code=exited, status=3/NOTIMPLEMENTED
░░ Subject: Unit process exited
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ An n/a= process belonging to unit biblioteca.mount has exited.
░░
░░ The process' exit code is 'exited' and its exit status is 3.
mar 25 13:57:52 woody systemd[1]: biblioteca.mount: Failed with result 'exit-code'.
░░ Subject: Unit failed
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ The unit biblioteca.mount has entered the 'failed' state with result 'exit-code'.
mar 25 13:57:52 woody systemd[1]: Failed to mount /biblioteca.
░░ Subject: A start job for unit biblioteca.mount has failed
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit biblioteca.mount has finished with a failure.
░░
░░ The job identifier is 651 and the job result is failed.
mar 25 13:57:52 woody systemd[1]: Dependency failed for Local File Systems.
░░ Subject: A start job for unit local-fs.target has failed
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit local-fs.target has finished with a failure.
░░
░░ The job identifier is 630 and the job result is dependency.
mar 25 13:57:52 woody systemd[1]: local-fs.target: Job local-fs.target/start failed with result 'dependency'.
mar 25 13:57:52 woody systemd[1]: local-fs.target: Triggering OnFailure= dependencies.
mar 25 13:57:52 woody systemd[1]: modprobe@configfs.service: Deactivated successfully.
What am I doing wrong??