diff options
| author | Fuwn <[email protected]> | 2024-11-01 23:54:56 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-11-01 23:54:56 -0700 |
| commit | b7f007010e6e0eb5501dabb1898f466659cf1ff9 (patch) | |
| tree | d525741855eeaf8ba2f7201dba422d6e31c7fc4d /modules/options/mounts/kioku.nix | |
| parent | hosts: kioku mount options (diff) | |
| download | nixos-config-b7f007010e6e0eb5501dabb1898f466659cf1ff9.tar.xz nixos-config-b7f007010e6e0eb5501dabb1898f466659cf1ff9.zip | |
kansai: plex mount module, extra kioku mount options
Diffstat (limited to 'modules/options/mounts/kioku.nix')
| -rw-r--r-- | modules/options/mounts/kioku.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/modules/options/mounts/kioku.nix b/modules/options/mounts/kioku.nix index ad8acd5..d6b3770 100644 --- a/modules/options/mounts/kioku.nix +++ b/modules/options/mounts/kioku.nix @@ -14,5 +14,27 @@ 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; + }; }; } |