summaryrefslogtreecommitdiff
path: root/modules/options/mounts/usb.nix
blob: 1804fd14a128604f749cb0ef02c4bd53d6e04dad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ lib, ... }:
{
  options.modules.mounts.usb =
    let
      inherit (lib) mkOption types;
    in
    {
      enable = mkOption {
        default = false;
        type = types.bool;
      };

      withSamba = mkOption {
        default = false;
        type = types.bool;
      };

      name = mkOption {
        default = null;
        type = types.str;
      };

      shareName = mkOption {
        default = "usb";
        type = types.str;
      };

      device = mkOption {
        default = null;
        type = types.str;
      };

      extraOptions =
        with types;
        mkOption {
          default = [ ];
          type = listOf str;
        };
    };
}