summaryrefslogtreecommitdiffstats
path: root/nixos/modules/tasks/filesystems.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-10-30 11:02:04 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-10-30 14:57:42 +0100
commit862e3dd977cdd853c3ab3202ab1b73561f8a3ea1 (patch)
tree43e95414e328ac92383bccf41219c30fa9729473 /nixos/modules/tasks/filesystems.nix
parent162b874469935923dec02cc9a6b5f58b1c8267a8 (diff)
Substitute "types.uniq types.string" -> "types.str"
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 2b4fe582c372..3f484045ed4c 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.";
};