feat(ref): add github pat to use with nix requests

This commit is contained in:
Youwen Wu 2024-12-27 18:37:32 -08:00
parent 3ad407664b
commit 15b5c56a19
Signed by: youwen
GPG key ID: 865658ED1FE61EC3
6 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,6 @@
{ config, ... }:
{
nix.extraOptions = ''
!include ${config.age.secrets.nix_config_github_pat.path}
'';
}