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