Compare commits
No commits in common. "fa0a4917a212227c95d63f38e29ec2be391150b5" and "863956c38b33a38c1fb9940cb4e58ae1b7576f8e" have entirely different histories.
fa0a4917a2
...
863956c38b
3 changed files with 4 additions and 5 deletions
|
@ -7,7 +7,7 @@ on:
|
|||
- main
|
||||
|
||||
env:
|
||||
registry: ${{ forge.server_url }}
|
||||
registry: git.amarth.cloud
|
||||
owner: chris
|
||||
image: default
|
||||
tag: latest
|
||||
|
@ -32,7 +32,7 @@ jobs:
|
|||
run: podman --version
|
||||
|
||||
- name: Log into registry
|
||||
run: podman login --username "${{ forge.actor }}" --password "${{ forge.token }}" ${{ env.registry }}
|
||||
run: podman login ${{ env.registry }}
|
||||
|
||||
- name: Build image
|
||||
run: >-
|
||||
|
|
|
@ -15,10 +15,10 @@ in
|
|||
nix = {
|
||||
package = pkgs.nixVersions.latest;
|
||||
|
||||
extraOptions = "experimental-features = nix-command flakes pipe-operators";
|
||||
extraOptions = "experimental-features = nix-command flakes pipe-operator";
|
||||
|
||||
settings = {
|
||||
experimental-features = [ "nix-command" "flakes" "pipe-operators" ];
|
||||
experimental-features = [ "nix-command" "flakes" "pipe-operator" ];
|
||||
allowed-users = [ "@wheel" ];
|
||||
trusted-users = [ "@wheel" ];
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
FROM nixos/nix:latest
|
||||
|
||||
RUN nix-env -iA nixpkgs.nodejs_24
|
||||
RUN echo "experimental-features = nix-command flakes pipe-operators" >> /etc/nix/nix.conf
|
||||
|
||||
CMD ["/bin/bash"]
|
Loading…
Add table
Add a link
Reference in a new issue