summaryrefslogtreecommitdiffstats
path: root/udiskie.nix
blob: 3b354c061558828d27491f27d2459ed2c5cee7bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ config, pkgs, ... }:

{
  # automount
  services.udiskie = {
    enable = true;
    tray = "auto";
    notify = true;
    automount = true;
  };
}