home: nixpkgs: define 'GITHUB_API_TOKEN'
All checks were successful
ci/woodpecker/push/check Pipeline was successful

Turns out the nixpkgs scripts are not consistent in which environment
variable they expect to be defined...
This commit is contained in:
Bruno BELANYI 2023-07-17 09:57:24 +00:00
parent 493636decb
commit caa8357db8

View file

@ -14,6 +14,7 @@ in
home.sessionVariables = { home.sessionVariables = {
GITHUB_TOKEN = ''$(cat "${config.age.secrets."github/token".path}")''; GITHUB_TOKEN = ''$(cat "${config.age.secrets."github/token".path}")'';
GITHUB_API_TOKEN = ''$(cat "${config.age.secrets."github/token".path}")'';
}; };
}; };
} }