nixpkgs/nixos/modules/tasks/filesystems/glusterfs.nix
2017-02-02 23:16:52 +01:00

12 lines
176 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = mkIf (any (fs: fs == "glusterfs") config.boot.supportedFilesystems) {
system.fsPackages = [ pkgs.glusterfs ];
};
}