fix: damogran overlays #216
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jobs: | |
build_shell: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4.1.7 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v27 | |
with: | |
extra_nix_config: access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | |
nix_path: nixpkgs=channel:nixos-23.11 | |
- name: Install cachix action | |
uses: cachix/cachix-action@v15 | |
with: | |
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | |
extraPullNames: cuda-maintainers, mic92, nix-community, nrdxp | |
name: njk | |
signingKey: ${{ secrets.CACHIX_SIGNING_KEY }} | |
- name: Build devshell | |
run: nix develop --command "menu" | |
name: Build devshell [x86_64-linux] | |
'on': | |
push: null | |
workflow_dispatch: null |