Hello Guix! I have an external HDD that I want to use with the Guix system. I
only want one user to mount it without root. I figured udisks2 would do the job
but it always mounts to /run/media, which I do not want. I tried adding a
udev-rule-service to my config like this:
(
udev-rules-service
'my-rule
(
udev-rule
"80-udisks2.rules"
"
\
KERNEL==
\"
sdbx
\"
, ENV{UDISKS_FILESYSTEM_SHARED}=
\"
1
\"))
...but I saw no changes: it will always mount to /run when I want it to mount
to /media or anywhere on the user's home directory. How can I achieve this? I
alsp tried using a new rule file using udev-rule-service but when mounting the
HDD, it always mounts to /run. Hopefully I can get some ideas on how to achieve
what I desire.
Thanks in advance!