summaryrefslogtreecommitdiff
path: root/modules/options/mounts/kioku.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/options/mounts/kioku.nix')
-rw-r--r--modules/options/mounts/kioku.nix22
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;
+ };
};
}