From caa8357db897182f9351d8a3e8f3b33a210f28ac Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Mon, 17 Jul 2023 09:57:24 +0000 Subject: [PATCH] home: nixpkgs: define 'GITHUB_API_TOKEN' Turns out the nixpkgs scripts are not consistent in which environment variable they expect to be defined... --- home/nixpkgs/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home/nixpkgs/default.nix b/home/nixpkgs/default.nix index 2b7fca4..720fc9b 100644 --- a/home/nixpkgs/default.nix +++ b/home/nixpkgs/default.nix @@ -14,6 +14,7 @@ in home.sessionVariables = { GITHUB_TOKEN = ''$(cat "${config.age.secrets."github/token".path}")''; + GITHUB_API_TOKEN = ''$(cat "${config.age.secrets."github/token".path}")''; }; }; }