aly: trim unused packages and add firefox as default browser #1429
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
name: "nix-check" | |
on: | |
push: | |
paths-ignore: | |
- '**/*.md' | |
- '.github/**' | |
- '_img/**' | |
workflow_dispatch: | |
jobs: | |
fmt-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
with: | |
fetch-depth: 1 | |
- uses: DeterminateSystems/nix-installer-action@main | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- name: Check formatting | |
run: nix fmt -- -c . | |
eval-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
with: | |
fetch-depth: 1 | |
- uses: DeterminateSystems/nix-installer-action@main | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- name: Check flake evaluation | |
run: nix flake check |