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
ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git]
/
nixos
/
modules
/
tasks
/
filesystems
/
glusterfs.nix
blob
24998a8a1011aa340d6388cbfb14f9b70338009e
1
{
2
config,
3
lib,
4
pkgs,
5
...
6
}:
7
8
with lib;
9
10
{
11
config = mkIf (config.boot.supportedFilesystems.glusterfs or false) {
12
13
system.fsPackages = [ pkgs.glusterfs ];
14
15
};
16
}