repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
grafana-alloy: don't build the frontend twice
[NixPkgs.git]
/
nixos
/
modules
/
tasks
/
filesystems
/
glusterfs.nix
blob
02ef95262dbda0908117b04d638f14c3ac7aec31
1
{ config, lib, pkgs, ... }:
2
3
with lib;
4
5
{
6
config = mkIf (config.boot.supportedFilesystems.glusterfs or false) {
7
8
system.fsPackages = [ pkgs.glusterfs ];
9
10
};
11
}