summary refs log tree commit diff
path: root/nixos/modules/tasks/filesystems.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/tasks/filesystems.nix')
-rw-r--r--nixos/modules/tasks/filesystems.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/tasks/filesystems.nix b/nixos/modules/tasks/filesystems.nix
index 2b4fe582c37..3f484045ed4 100644
--- a/nixos/modules/tasks/filesystems.nix
+++ b/nixos/modules/tasks/filesystems.nix
@@ -15,7 +15,7 @@ let
 
       mountPoint = mkOption {
         example = "/mnt/usb";
-        type = types.uniq types.string;
+        type = types.str;
         description = "Location of the mounted the file system.";
       };
 
@@ -36,7 +36,7 @@ let
       fsType = mkOption {
         default = "auto";
         example = "ext3";
-        type = types.uniq types.string;
+        type = types.str;
         description = "Type of the file system.";
       };