Initial commit

This commit is contained in:
devcontainer-features
2022-11-17 22:40:23 +01:00
commit efd59cafa3
11 changed files with 195 additions and 0 deletions

26
README.md Normal file
View File

@@ -0,0 +1,26 @@
# <project-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
```