NixOS + home-manager configs, mirrored from GitLab SaaS. gitlab.com/andreijiroh-dev/nixops-config
nix-flake nixos home-manager nixpkgs nix-flakes
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Prepare automated NixOS build ops to test builds

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

+19 -1
+19 -1
.github/workflows/update-flakes.yml
··· 6 6 branches: [main] 7 7 8 8 jobs: 9 - build: 9 + update-lockfile: 10 10 permissions: 11 11 contents: write 12 12 actions: write ··· 33 33 git add flake.lock 34 34 git commit -m "Update flake.lock" || echo "No changes to commit" 35 35 git push 36 + build: 37 + needs: [update-lockfile] 38 + runs-on: ubuntu-latest 39 + steps: 40 + - uses: actions/checkout@v2 41 + with: 42 + fetch-depth: 0 43 + - name: Set up Nix 44 + uses: cachix/install-nix-action@v14 45 + with: 46 + nix_path: nixpkgs=channel:nixos-unstable 47 + extra_nix_config: | 48 + experimental-features = nix-command flakes 49 + access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} 50 + - run: nix flake metadata 51 + - run: | 52 + echo working on it soon! 53 +