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 3, 2025
1 parent 6125965 commit 4fb9151
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -246,12 +246,12 @@
branch = false;
};
registries = {
"ghcr.io" = {
enable = lib.mkForce isVersionNonEmpty;
repo = lib.mkForce "${gitHubOrg}/${packageName}";
# username = builtins.getEnv "GITHUB_ACTOR";
# password = "$GH_TOKEN";
};
# "ghcr.io" = {
# enable = lib.mkForce isVersionNonEmpty;
# repo = lib.mkForce "${gitHubOrg}/${packageName}";
# username = lib.mkForce (builtins.getEnv "GITHUB_ACTOR");
# password = lib.mkForce "$GH_TOKEN";
# };
# "cr.cluster.pyrovelocity.net" = {
# enable = true;
# repo = "${packageName}/${packageName}";
Expand Down Expand Up @@ -286,10 +286,10 @@
};
registries = {
"ghcr.io" = {
enable = lib.mkForce false;
enable = 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 @@ -324,12 +324,12 @@
branch = false;
};
registries = {
"ghcr.io" = {
enable = lib.mkForce false;
repo = lib.mkForce "${gitHubOrg}/${packageName}code";
# username = builtins.getEnv "GITHUB_ACTOR";
# password = "$GH_TOKEN";
};
# "ghcr.io" = {
# enable = lib.mkForce false;
# repo = lib.mkForce "${gitHubOrg}/${packageName}code";
# username = lib.mkForce (builtins.getEnv "GITHUB_ACTOR");
# password = lib.mkForce "$GH_TOKEN";
# };
# "cr.cluster.pyrovelocity.net" = {
# enable = true;
# repo = "${packageName}/${packageName}code";
Expand Down Expand Up @@ -363,12 +363,12 @@
branch = false;
};
registries = {
"ghcr.io" = {
enable = lib.mkForce false;
repo = lib.mkForce "${gitHubOrg}/${packageName}jupyter";
# username = builtins.getEnv "GITHUB_ACTOR";
# password = "$GH_TOKEN";
};
# "ghcr.io" = {
# enable = lib.mkForce false;
# repo = lib.mkForce "${gitHubOrg}/${packageName}jupyter";
# username = lib.mkForce (builtins.getEnv "GITHUB_ACTOR");
# password = lib.mkForce "$GH_TOKEN";
# };
# "cr.cluster.pyrovelocity.net" = {
# enable = true;
# repo = "${packageName}/${packageName}jupyter";
Expand Down

0 comments on commit 4fb9151

Please sign in to comment.