nixos-config/modules/ceph-common.nix

22 lines
417 B
Nix
Raw Permalink Normal View History

2021-12-20 18:53:37 +01:00
{ pkgs, ... }:
{
#services.ceph = {
# enable = true;
# global.fsid = "3af2635b-21a8-4ff3-a428-b0c18176382f";
# global.monHost = "10.0.69.216";
# global.monInitialMembers = "mc4";
#};
2021-12-20 18:53:37 +01:00
networking.firewall.allowedTCPPortRanges = [
{
from = 6800;
to = 7300;
}
];
services.ceph.client.enable = true;
#environment.systemPackages = [ pkgs.ceph ];
2021-12-20 18:53:37 +01:00
}
# vim: set et ts=2 sw=2 ai: