summary refs log tree commit diff
path: root/nixos/modules/tasks/filesystems.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2015-06-15 18:18:46 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2015-06-15 18:18:46 +0200
commit6e6a96d42cf56cfcd042bbeab89e37f442f0cfcc (patch)
tree7ab1646f34c7437c6cb41442a398163e00cb98bb /nixos/modules/tasks/filesystems.nix
parentc63bc92d4c040fb7999185e1948b29c3c84bacf9 (diff)
downloadnixpkgs-6e6a96d42cf56cfcd042bbeab89e37f442f0cfcc.tar
nixpkgs-6e6a96d42cf56cfcd042bbeab89e37f442f0cfcc.tar.gz
nixpkgs-6e6a96d42cf56cfcd042bbeab89e37f442f0cfcc.tar.bz2
nixpkgs-6e6a96d42cf56cfcd042bbeab89e37f442f0cfcc.tar.lz
nixpkgs-6e6a96d42cf56cfcd042bbeab89e37f442f0cfcc.tar.xz
nixpkgs-6e6a96d42cf56cfcd042bbeab89e37f442f0cfcc.tar.zst
nixpkgs-6e6a96d42cf56cfcd042bbeab89e37f442f0cfcc.zip
Some more type cleanup
Diffstat (limited to 'nixos/modules/tasks/filesystems.nix')
-rw-r--r--nixos/modules/tasks/filesystems.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/tasks/filesystems.nix b/nixos/modules/tasks/filesystems.nix
index ce8d6079faa..ce21d9fe762 100644
--- a/nixos/modules/tasks/filesystems.nix
+++ b/nixos/modules/tasks/filesystems.nix
@@ -121,7 +121,7 @@ in
     boot.supportedFilesystems = mkOption {
       default = [ ];
       example = [ "btrfs" ];
-      type = types.listOf types.string;
+      type = types.listOf types.str;
       description = "Names of supported filesystem types.";
     };