nixpkgs/nixos/modules/tasks/filesystems/glusterfs.nix

12 lines
176 B
Nix
Raw Normal View History

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