Compare commits

...

3 commits

Author SHA1 Message Date
Chris Kruining
fa0a4917a2
cool shizzle
Some checks failed
Test action / Print hello world (push) Failing after 1s
2025-09-04 11:04:13 +02:00
Chris Kruining
0d6fb5aab6
update default runner dockerfile 2025-09-04 10:39:31 +02:00
Chris Kruining
e048ada01f
whoops 2025-09-04 10:38:46 +02:00
3 changed files with 5 additions and 4 deletions

View file

@ -7,7 +7,7 @@ on:
- main - main
env: env:
registry: git.amarth.cloud registry: ${{ forge.server_url }}
owner: chris owner: chris
image: default image: default
tag: latest tag: latest
@ -32,7 +32,7 @@ jobs:
run: podman --version run: podman --version
- name: Log into registry - name: Log into registry
run: podman login ${{ env.registry }} run: podman login --username "${{ forge.actor }}" --password "${{ forge.token }}" ${{ env.registry }}
- name: Build image - name: Build image
run: >- run: >-

View file

@ -15,10 +15,10 @@ in
nix = { nix = {
package = pkgs.nixVersions.latest; package = pkgs.nixVersions.latest;
extraOptions = "experimental-features = nix-command flakes pipe-operator"; extraOptions = "experimental-features = nix-command flakes pipe-operators";
settings = { settings = {
experimental-features = [ "nix-command" "flakes" "pipe-operator" ]; experimental-features = [ "nix-command" "flakes" "pipe-operators" ];
allowed-users = [ "@wheel" ]; allowed-users = [ "@wheel" ];
trusted-users = [ "@wheel" ]; trusted-users = [ "@wheel" ];

View file

@ -1,5 +1,6 @@
FROM nixos/nix:latest FROM nixos/nix:latest
RUN nix-env -iA nixpkgs.nodejs_24 RUN nix-env -iA nixpkgs.nodejs_24
RUN echo "experimental-features = nix-command flakes pipe-operators" >> /etc/nix/nix.conf
CMD ["/bin/bash"] CMD ["/bin/bash"]