9 lines
162 B
Nix
9 lines
162 B
Nix
# Config for automounting USB devices
|
|
{ config, pkgs, ... }:
|
|
{
|
|
services = {
|
|
devmon.enable = true;
|
|
gvfs.enable = true;
|
|
udisks2.enable = true;
|
|
};
|
|
}
|