grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / tasks / filesystems / glusterfs.nix
blob02ef95262dbda0908117b04d638f14c3ac7aec31
1 { config, lib, pkgs, ... }:
3 with lib;
6   config = mkIf (config.boot.supportedFilesystems.glusterfs or false) {
8     system.fsPackages = [ pkgs.glusterfs ];
10   };