aboutsummaryrefslogtreecommitdiff
path: root/justfile
blob: b6b3eb6d62f4d3574e21064ab3fbc1275e49ab73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
check:
  NIXPKGS_ALLOW_UNFREE=1 nix flake check --impure

build package:
  NIXPKGS_ALLOW_UNFREE=1 nix build .#{{package}} --impure

run package:
  NIXPKGS_ALLOW_UNFREE=1 nix run .#{{package}} --impure

sort-packages:
  ls -la pkgs/ | awk '{sub(/\.nix$/, "", $9); print $9}' | sort