From f673abb95a784d8a29be8eae4d5277d60b994972 Mon Sep 17 00:00:00 2001 From: Petru Paler Date: Sun, 26 Nov 2023 09:40:30 +0000 Subject: [PATCH] Install glusterfs package. --- common/glusterfs-client.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/glusterfs-client.nix b/common/glusterfs-client.nix index 58a5e25..05905c4 100644 --- a/common/glusterfs-client.nix +++ b/common/glusterfs-client.nix @@ -1,4 +1,7 @@ +{ pkgs, ... }: { + environment.systemPackages = [ pkgs.glusterfs ]; + fileSystems."/data/compute" = { device = "c1:/compute"; fsType = "glusterfs";