13 lines
440 B
YAML
13 lines
440 B
YAML
image: nixos/unstable
|
|
environment:
|
|
NIX_CONFIG: "experimental-features = nix-command flakes"
|
|
MY_NIX_FLAGS: "--extra-experimental-features command --extra-experimental-features flakes"
|
|
sources:
|
|
- https://git.sr.ht/~sposito/nix-conf
|
|
tasks:
|
|
- check_fmt: |
|
|
cd ~/nix-conf
|
|
nix run nixpkgs#nixpgs-fmt ${MY_NIX_FLAGS} -- --check .
|
|
- static: |
|
|
cd ~/nix-conf
|
|
nix run nixpkgs#statix ${MY_NIX_FLAGS} -- check .
|