summaryrefslogtreecommitdiffstats
path: root/nixos/modules/tasks/filesystems.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-07-30 15:44:47 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-07-30 16:04:15 +0200
commite68b0c7f5f14b4bef23303ec0316bcce88f05300 (patch)
treef22415f5075e5f622a7e9b990b2d36292566627a /nixos/modules/tasks/filesystems.nix
parentd45dcf348e451dd56c0c994a894f4c22b653fb71 (diff)
Mount unionfs-fuse filesystems using the normal fileSystems option
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 ccb6b6160151..64a20034f3cc 100644
--- a/nixos/modules/tasks/filesystems.nix
+++ b/nixos/modules/tasks/filesystems.nix
@@ -68,7 +68,7 @@ let
config = {
mountPoint = mkDefault name;
- device = mkIf (config.fsType == "tmpfs") config.fsType;
+ device = mkIf (config.fsType == "tmpfs") (mkDefault config.fsType);
};
};