Skip to content

Commit

Permalink
fix(flake): override ghcr ids
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Smith <[email protected]>
  • Loading branch information
cameronraysmith committed Mar 2, 2025
1 parent 6125965 commit 5c506d7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,8 @@
"ghcr.io" = {
enable = lib.mkForce isVersionNonEmpty;
repo = lib.mkForce "${gitHubOrg}/${packageName}";
# username = builtins.getEnv "GITHUB_ACTOR";
# password = "$GH_TOKEN";
username = lib.mkForce builtins.getEnv "GITHUB_ACTOR";
password = lib.mkForce "$GH_TOKEN";
};
# "cr.cluster.pyrovelocity.net" = {
# enable = true;
Expand Down Expand Up @@ -288,8 +288,8 @@
"ghcr.io" = {
enable = lib.mkForce false;
repo = lib.mkForce "${gitHubOrg}/${packageName}dev";
# username = builtins.getEnv "GITHUB_ACTOR";
# password = "$GH_TOKEN";
username = lib.mkForce builtins.getEnv "GITHUB_ACTOR";
password = lib.mkForce "$GH_TOKEN";
};
# "cr.cluster.pyrovelocity.net" = {
# enable = true;
Expand Down Expand Up @@ -327,8 +327,8 @@
"ghcr.io" = {
enable = lib.mkForce false;
repo = lib.mkForce "${gitHubOrg}/${packageName}code";
# username = builtins.getEnv "GITHUB_ACTOR";
# password = "$GH_TOKEN";
username = lib.mkForce builtins.getEnv "GITHUB_ACTOR";
password = lib.mkForce "$GH_TOKEN";
};
# "cr.cluster.pyrovelocity.net" = {
# enable = true;
Expand Down Expand Up @@ -366,8 +366,8 @@
"ghcr.io" = {
enable = lib.mkForce false;
repo = lib.mkForce "${gitHubOrg}/${packageName}jupyter";
# username = builtins.getEnv "GITHUB_ACTOR";
# password = "$GH_TOKEN";
username = lib.mkForce builtins.getEnv "GITHUB_ACTOR";
password = lib.mkForce "$GH_TOKEN";
};
# "cr.cluster.pyrovelocity.net" = {
# enable = true;
Expand Down

0 comments on commit 5c506d7

Please sign in to comment.