chore: nix flake update #879
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
on: [push, pull_request] | |
name: x86_64-linux | |
jobs: | |
flake: | |
runs-on: ubuntu-22.04 | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v22 | |
with: | |
extra_nix_config: | | |
accept-flake-config = true | |
- name: Flake check | |
run: | | |
nix flake check | |
- uses: cachix/cachix-action@v12 | |
with: | |
name: konradmalik | |
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
- name: Shell build linux | |
run: | | |
nix build .#devShells.x86_64-linux.default | |
- name: Flake build generic linux | |
run: | | |
nix build .#homeConfigurations.konrad@generic.activationPackage | |
- name: Flake build m3800 | |
run: | | |
nix build .#nixosConfigurations.m3800.config.system.build.toplevel |