summary refs log tree commit diff
path: root/nixos/modules/tasks/filesystems/glusterfs.nix
blob: e8c7fa8efbae185de59093fef630f87f3e2f6cf7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ config, lib, pkgs, ... }:

with lib;

{
  config = mkIf (any (fs: fs == "glusterfs") config.boot.supportedFilesystems) {

    system.fsPackages = [ pkgs.glusterfs ];

  };
}