1{ config, lib, pkgs, ... }: 2 3with lib; 4 5{ 6 config = mkIf (any (fs: fs == "glusterfs") config.boot.supportedFilesystems) { 7 8 system.fsPackages = [ pkgs.glusterfs ]; 9 10 }; 11}