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 33 additions and 31 deletions
Showing only changes of commit dddcf0d8c6 - Show all commits

View file

@ -1,4 +1,4 @@
{ pkgs, config, ... }: { { pkgs, ... }: {
hardware = { hardware = {
enableAllFirmware = true; enableAllFirmware = true;
nvidia = { nvidia = {

View file

@ -17,16 +17,12 @@ in {
networking.firewall.allowedTCPPorts = [ 8484 ]; networking.firewall.allowedTCPPorts = [ 8484 ];
environment.systemPackages = with pkgs; [ sqlite ]; environment.systemPackages = with pkgs; [ sqlite ];
virtualisation = {
virtualisation.podman.enable = true; podman.enable = true;
virtualisation.oci-containers.backend = "podman"; oci-containers.backend = "podman";
vault-secrets.secrets.grist = { oci-containers.containers.grist = {
quoteEnvironmentValues = false; # Needed for docker
services = [ "podman-grist" ];
};
virtualisation.oci-containers.containers.grist = {
image = image =
"gristlabs/grist:latest"; # Switch to versioned release as soon as OIDC hits stable "gristlabs/grist:latest"; # Switch to versioned release as soon as OIDC hits stable
environment = { environment = {
@ -53,4 +49,10 @@ in {
ports = [ "8484:8484" ]; ports = [ "8484:8484" ];
volumes = [ "/var/lib/grist:/persist" ]; volumes = [ "/var/lib/grist:/persist" ];
}; };
};
vault-secrets.secrets.grist = {
quoteEnvironmentValues = false; # Needed for docker
services = [ "podman-grist" ];
};
} }