From 246ebf9f15c8d957184862e97c6e5023a71fbee3 Mon Sep 17 00:00:00 2001 From: Ryan Omasta Date: Mon, 30 Mar 2026 12:35:33 -0600 Subject: [PATCH 1/2] tandoor-recipes: 2.6.0 -> 2.6.4 https://github.com/TandoorRecipes/recipes/releases/tag/2.6.4 Diff: https://github.com/TandoorRecipes/recipes/compare/2.6.0...2.6.4 --- pkgs/by-name/ta/tandoor-recipes/common.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ta/tandoor-recipes/common.nix b/pkgs/by-name/ta/tandoor-recipes/common.nix index 3cebdce0f778..79e2f158d8e5 100644 --- a/pkgs/by-name/ta/tandoor-recipes/common.nix +++ b/pkgs/by-name/ta/tandoor-recipes/common.nix @@ -1,15 +1,15 @@ { lib, fetchFromGitHub }: rec { - version = "2.6.0"; + version = "2.6.4"; src = fetchFromGitHub { owner = "TandoorRecipes"; repo = "recipes"; tag = version; - hash = "sha256-tjVqHcDy+Ms1L3IuGo3aKDKcrHU22YvDE8QBEQ8Hybg="; + hash = "sha256-PPx7rdJREh8qVHTk3a5j1lw3OwHXejravMGBak4u8b8="; }; - yarnHash = "sha256-yC8v/lYTL12YTJLX+/BrBLolzQ0O4kSZpcsduLHm65o="; + yarnHash = "sha256-9Oxp4C0iRaqsQG1e0DEdfUUAfSuZo/fiuQO0ofSJEXY="; meta = { homepage = "https://tandoor.dev/"; From 8e7a0ca8087bdadee04da018b7849787bf468c24 Mon Sep 17 00:00:00 2001 From: Ryan Omasta Date: Mon, 30 Mar 2026 13:07:11 -0600 Subject: [PATCH 2/2] nixos/tandoor-recipes: set ALLOWED_HOSTS to defined address --- nixos/modules/services/misc/tandoor-recipes.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/misc/tandoor-recipes.nix b/nixos/modules/services/misc/tandoor-recipes.nix index 8f8267e294bc..af9c23cb254b 100644 --- a/nixos/modules/services/misc/tandoor-recipes.nix +++ b/nixos/modules/services/misc/tandoor-recipes.nix @@ -16,6 +16,7 @@ let DEBUG = "0"; DEBUG_TOOLBAR = "0"; MEDIA_ROOT = "${stateDir}${lib.optionalString useNewMediaRoot "/media"}"; + ALLOWED_HOSTS = cfg.address; } // lib.optionalAttrs (config.time.timeZone != null) { TZ = config.time.timeZone;