major refactor (treewide amongst general cleaning based on my modified dots (with help from notashelf) - perks 1: it works
This commit is contained in:
parent
ea3485f5c5
commit
d666f30475
31 changed files with 2140 additions and 1145 deletions
23
.github/workflows/check.yml
vendored
Normal file
23
.github/workflows/check.yml
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
name: Check Flake
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
paths:
|
||||
- "**.nix"
|
||||
- "**.lock"
|
||||
- ".github/workflows/check.yml"
|
||||
push:
|
||||
paths:
|
||||
- "**.nix"
|
||||
- "**.lock"
|
||||
- ".github/workflows/check.yml"
|
||||
|
||||
jobs:
|
||||
check:
|
||||
# uses the local reusable workflow
|
||||
uses: ./.github/workflows/nix.yml
|
||||
secrets:
|
||||
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
||||
with:
|
||||
command: nix flake check --accept-flake-config
|
||||
Reference in a new issue