nixpkgs-odroid-hc4/nixos/modules/tasks/filesystems/glusterfs.nix
2025-12-20 09:59:59 +11:00

11 lines
176 B
Nix

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