switched back to docker container
Validate NixOS Config / validate (push) Failing after 11s

This commit is contained in:
2024-08-25 14:15:27 +00:00
parent dbcff150c4
commit 0253831bf6
+5 -2
View File
@@ -11,20 +11,23 @@ on:
jobs:
validate:
runs-on: native
runs-on: nixos
steps:
- name: Debug environment
run: |
echo $PATH
nix-shell -p nix nodejs-slim which
which nix || echo "Nix not found"
which node || echo "node not found"
- name: Checkout repository
uses: actions/checkout@v3
- name: Validate NixOS configuration
run: |
node --version
nix flake check
nix build .#nixosConfigurations.nixbox.config.system.build.toplevel --dry-run
env:
NIX_CONFIG: "experimental-features = nix-command flakes"
NIX_PATH: "nixpkgs=channel:nixos-unstable"