filesystems: add support to mount glusterfs

This commit is contained in:
Pascal Bach
2017-02-02 23:16:52 +01:00
parent 19759cfeab
commit ff3f3399ae
2 changed files with 12 additions and 1 deletions
@@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
with lib;
{
config = mkIf (any (fs: fs == "glusterfs") config.boot.supportedFilesystems) {
system.fsPackages = [ pkgs.glusterfs ];
};
}