Skip to content

Commit

Permalink
fix(flake): add manual ghcr.io registry
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Smith <[email protected]>
  • Loading branch information
cameronraysmith committed Dec 22, 2023
1 parent 46ca783 commit a92e5ab
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -344,10 +344,17 @@
};

legacyPackages.devcontainerManifest = inputs.flocken.legacyPackages.${system}.mkDockerManifest {
github = {
enable = true;
token = builtins.getEnv "GH_TOKEN";
repo = "sciexp/flytezendev";
# github = {
# enable = true;
# token = builtins.getEnv "GH_TOKEN";
# };
registries = {
ghcr.io = {
enable = true;
repo = "sciexp/flytezendev";
username = builtins.getEnv "GITHUB_ACTOR";
password = builtins.getEnv "GH_TOKEN";
};
};
version = builtins.getEnv "VERSION";
# images = with self.packages; [x86_64-linux.devcontainerDockerTools aarch64-linux.devcontainerDockerTools];
Expand Down

0 comments on commit a92e5ab

Please sign in to comment.