persist: stores: crypt: remove unrecognized nodev flag

This commit is contained in:
Colin 2023-09-13 06:07:04 +00:00
parent 910d0fa59e
commit 9ad1be40b2
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ lib.mkIf config.sane.persist.enable
device = underlying;
fsType = "fuse.gocryptfs";
options = [
"nodev"
# "nodev" # "Unknown parameter 'nodev'". gocryptfs requires this be passed as `-ko nodev`
# "nosuid" # "Unknown parameter 'nosuid'". gocryptfs requires this be passed as `-ko nosuid` (also, nosuid is default)
"allow_other" # root ends up being the user that mounts this, so need to make it visible to other users.
"passfile=${key}"

View File

@ -31,7 +31,7 @@ lib.mkIf config.sane.persist.enable
options = [
"noauto" # don't try to mount, until the user logs in!
"nofail"
"nodev"
# "nodev" # "Unknown parameter 'nodev'". gocryptfs requires this be passed as `-ko nodev`
# "noexec" # handful of scripts in ~/private/knowledge that are executable
# "nosuid" # "Unknown parameter 'nosuid'". gocryptfs requires this be passed as `-ko nosuid` (also nosuid is default)
"allow_other" # root ends up being the user that mounts this, so need to make it visible to other users.