diff --git a/systems/vpn/configuration.nix b/systems/vpn/configuration.nix index be6ef74..bbdf288 100644 --- a/systems/vpn/configuration.nix +++ b/systems/vpn/configuration.nix @@ -7,6 +7,23 @@ ./modules/headscale.nix ]; system.stateVersion = "21.11"; + + services.ceph = { + enable = true; + global.fsid = "be1051e6-ee13-44d6-a9a1-96cc36300e13"; + global.monHost = "10.0.69.234"; + global.monInitialMembers = "vpn"; + mds.enable = true; + mds.daemons = [ "vpn"]; + mon.enable = true; + mon.daemons = [ "vpn" ]; + osd.enable = true; + osd.daemons = [ "0" ]; + }; + + services.ceph.client.enable = true; + environment.systemPackages = [ pkgs.ceph ]; + } # vim: set et ts=2 sw=2 ai: