summaryrefslogtreecommitdiffstats
path: root/nixos/modules/tasks/filesystems.nix
diff options
context:
space:
mode:
authorPascal Bach <pascal.bach@nextrem.ch>2017-01-26 23:38:06 +0100
committerPascal Bach <pascal.bach@nextrem.ch>2017-02-02 23:16:52 +0100
commitff3f3399aefa759707f5f24da3b6641f2147cb0e (patch)
tree09563862939d02d3da5bb68fba5a246d66b958df /nixos/modules/tasks/filesystems.nix
parent19759cfeab0b749666dafdf52a0aad79123a2126 (diff)
filesystems: add support to mount glusterfs
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 49ba66ad50af..8bd35385739e 100644
--- a/nixos/modules/tasks/filesystems.nix
+++ b/nixos/modules/tasks/filesystems.nix
@@ -216,7 +216,7 @@ in
environment.etc.fstab.text =
let
- fsToSkipCheck = [ "none" "btrfs" "zfs" "tmpfs" "nfs" "vboxsf" ];
+ fsToSkipCheck = [ "none" "btrfs" "zfs" "tmpfs" "nfs" "vboxsf" "glusterfs" ];
skipCheck = fs: fs.noCheck || fs.device == "none" || builtins.elem fs.fsType fsToSkipCheck;
in ''
# This is a generated file. Do not edit!