Jump to content

USB storage devices: Difference between revisions

From NixOS Wiki
34j (talk | contribs)
No edit summary
34j (talk | contribs)
m Set category
Line 14: Line 14:


For other solutions, please refer to [https://wiki.archlinux.org/title/Udisks#Mount_helpers udisks - ArchWiki] or [https://wiki.archlinux.org/title/USB_storage_devices USB storage devices - ArchWiki].
For other solutions, please refer to [https://wiki.archlinux.org/title/Udisks#Mount_helpers udisks - ArchWiki] or [https://wiki.archlinux.org/title/USB_storage_devices USB storage devices - ArchWiki].
[[Category:Hardware]]

Revision as of 14:03, 10 February 2025

Auto-mounting with udisks

udiskie, a udisks2 front-end that allows to manage removable media can be used. To enable automounting, first enable udisks2:

❄︎ /etc/nixos/configuration.nix
services.udisks2.enable = true;

Next enable udiskie via Home Manager:

❄︎ ~/.config/home-manager/home.nix
services.udiskie.enable = true;
# services.udiskie.automount = true; # true by default

Once the configurations are reflected, USB storage devices will be instantly recognized when inserted without any additional operations needed.

For other solutions, please refer to udisks - ArchWiki or USB storage devices - ArchWiki.