summaryrefslogtreecommitdiff
path: root/modules/options/mounts/plex.nix
blob: c57199996d772c78521b7c03c9f1415afd695cba (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
{ lib, ... }:
{
  options.modules.mounts.plex =
    let
      inherit (lib) mkOption types;
    in
    {
      enable = mkOption {
        default = false;
        type = types.bool;
      };

      name = mkOption {
        default = "plex";
        type = types.str;
      };

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