From 97ce93cac6f9fbe233f88aeab5c4171508535d9d Mon Sep 17 00:00:00 2001 From: Colin Date: Wed, 28 Jun 2023 10:50:39 +0000 Subject: [PATCH] fs: allow mounting /mnt/* as ordinary user --- hosts/common/fs.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/common/fs.nix b/hosts/common/fs.nix index 743a0366..01533fab 100644 --- a/hosts/common/fs.nix +++ b/hosts/common/fs.nix @@ -7,6 +7,7 @@ let fsOpts = rec { common = [ "_netdev" "noatime" + "user" # allow any user with access to the device to mount the fs "x-systemd.requires=network-online.target" "x-systemd.after=network-online.target" "x-systemd.mount-timeout=10s" # how long to wait for mount **and** how long to wait for unmount @@ -19,7 +20,6 @@ let fsOpts = rec { ]; ssh = common ++ [ - "user" "identityfile=/home/colin/.ssh/id_ed25519" "allow_other" "default_permissions"