1
0
Files
nix-project-template/README.md
2022-11-17 21:57:32 +00:00

26 lines
503 B
Markdown

# $REPO_NAME
## Nix Flake commands
```sh
# nix flake are experimental and required following options --experimental-features 'nix-command flakes'
# create alias for nix --experimental-features 'nix-command flakes'
alias nixe && echo Alias for nixe exists || alias nixe="nix --experimental-features 'nix-command flakes'"
# build
nixe build
# run
nixe run
# open development shell
nixe develop
# update flake.lock
nixe run .#devTasks.updateFlakeLock
# tag project
nixe run .#devTasks.autoTag
```