diff --git a/hosts/architect/minio.nix b/hosts/architect/minio.nix index 174125f..c8d0c7b 100644 --- a/hosts/architect/minio.nix +++ b/hosts/architect/minio.nix @@ -1,4 +1,4 @@ -{ config, lib, ... }: +{ config, lib, pkgs, ... }: let domain = "s3.giugl.io"; @@ -8,7 +8,10 @@ let in { services = { - minio.enable = true; + minio = { + enable = true; + package = pkgs.minio_legacy_fs; + }; nginx.virtualHosts.${domain} = { forceSSL = true; @@ -24,7 +27,7 @@ in }; }; }; - + networking.extraHosts = '' ${architectInterfaceAddress "lan"} ${domain} ${architectInterfaceAddress "wireguard"} ${domain}