yep, more dotfiles

chore(justfile): add profile parameters to check and build

+9 -9
+9 -9
Justfile
··· 2 2 @just --list --unsorted --list-heading '' --list-prefix '—— ' 3 3 4 4 [linux] 5 - switch: 6 - sudo nixos-rebuild switch --show-trace --flake .# 5 + switch PROFILE="": 6 + sudo nixos-rebuild switch --show-trace --flake .#{{PROFILE}} 7 7 8 8 [macos] 9 - switch: 10 - darwin-rebuild switch --show-trace --flake .# 9 + switch PROFILE="": 10 + darwin-rebuild switch --show-trace --flake .#{{PROFILE}} 11 11 12 12 [linux] 13 - build: 14 - nixos-rebuild build --show-trace --flake .# 13 + build PROFILE="": 14 + nixos-rebuild build --show-trace --flake .#{{PROFILE}} 15 15 16 16 [macos] 17 - build: 18 - darwin-rebuild build --show-trace --flake .# 17 + build PROFILE="": 18 + darwin-rebuild build --show-trace --flake .#{{PROFILE}} 19 19 20 - check: build 20 + check PROFILE="": (build PROFILE) 21 21 @unlink result 22 22 23 23 home-build PROFILE: