48 lines
641 B
TOML
48 lines
641 B
TOML
[parameters.name]
|
|
description = "The name of the project"
|
|
default = "{{ name }}"
|
|
|
|
[[commands]]
|
|
command = "git"
|
|
args = ["init"]
|
|
|
|
[[commands]]
|
|
command = "git"
|
|
args = ["add", "."]
|
|
|
|
[[commands]]
|
|
command = "nix"
|
|
args = ["flake", "update"]
|
|
|
|
[[commands]]
|
|
command = "direnv"
|
|
args = ["allow"]
|
|
|
|
[[commands]]
|
|
command = "nix"
|
|
args = ["develop", "--command", "cargo", "update"]
|
|
|
|
[[commands]]
|
|
command = "git"
|
|
args = ["commit", "-am", "Initial Commit"]
|
|
|
|
|
|
[files."Cargo.toml"]
|
|
|
|
[files.".envrc"]
|
|
|
|
[files."flake.lock"]
|
|
|
|
[files."manifest.toml"]
|
|
|
|
[files."toolchain.toml"]
|
|
|
|
[files."Cargo.lock"]
|
|
|
|
[files.".gitignore"]
|
|
|
|
[files."flake.nix"]
|
|
|
|
[files."src/main.rs"]
|
|
|