Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

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

Add Tangled Spindle check workflow

+21
+21
.tangled/workflows/check.yml
··· 1 + when: 2 + - event: ["push", "manual"] 3 + branch: ["master"] 4 + - event: ["pull_request"] 5 + branch: ["master"] 6 + 7 + engine: "nixery" 8 + 9 + dependencies: 10 + nixpkgs: 11 + - nix 12 + 13 + environment: 14 + NIX_CONFIG: "experimental-features = nix-command flakes" 15 + 16 + steps: 17 + - name: "Run linters" 18 + command: "nix develop --command pre-commit run --all-files" 19 + 20 + - name: "Run flake checks" 21 + command: "nix flake check --show-trace"