nixos-conf/hardware-specific/usb-automount.nix

9 lines
162 B
Nix

# Config for automounting USB devices
{ config, pkgs, ... }:
{
services = {
devmon.enable = true;
gvfs.enable = true;
udisks2.enable = true;
};
}