diff --git a/hosts/server7/configuration.nix b/hosts/server7/configuration.nix index e20d9bae..2933060a 100644 --- a/hosts/server7/configuration.nix +++ b/hosts/server7/configuration.nix @@ -25,6 +25,20 @@ in { }; }; + fileSystems."/srv/ceph" = { + device = "172.22.99.13:6789:/"; + fsType = "ceph"; + options = [ + "name=storage2" + "secret=AQAvRhxcaCK0IxAAnoe00oiopcpQeKZgL02RWw==" + "noatime,_netdev" + "noauto" + "x-systemd.automount" + "x-systemd.device-timeout=175" + "users" + ]; + }; + services.nginx = { enable = true; recommendedGzipSettings = true;