brainix/sources/nixpkgs/nixos/modules/tasks/filesystems/glusterfs.nix
2026-02-13 17:06:24 +09:00

11 lines
176 B
Nix

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