chore(deps): update renovate/renovate docker tag to v37.68.4 #218

Open
renovate wants to merge 1976 commits from renovate/renovate-renovate-37.x into main
2 changed files with 18 additions and 1 deletions
Showing only changes of commit 30450f4750 - Show all commits

View file

@ -56,7 +56,6 @@
hostname = "minio";
ip = "192.168.0.112";
mac = "ae:c6:94:bb:c5:d9";
nix = false;
}
{
hostname = "cshub2";

View file

@ -0,0 +1,18 @@
{ config, pkgs, ... }:
let
vs = config.vault-secrets.secrets;
in
{
system.stateVersion = "22.11";
networking.firewall.allowedTCPPorts = [ 9000 9001 ];
networking.interfaces.eth0.useDHCP = true;
vault-secrets.secrets.minio = { };
services.minio = {
enable = true;
rootCredentialsFile = "${vs.minio}/environment";
};
}