No description
Find a file Use this template
2021-04-10 12:10:57 -04:00
.github/workflows rename CI files 2021-04-08 13:15:49 -04:00
.vscode nix autoformat etc 2021-04-08 21:27:32 -04:00
src Prepare to make a template 2021-04-10 12:10:57 -04:00
.gitignore crate2nix reborn 2021-04-08 13:10:55 -04:00
Cargo.lock Prepare to make a template 2021-04-10 12:10:57 -04:00
Cargo.toml Prepare to make a template 2021-04-10 12:10:57 -04:00
default.nix nix autoformat etc 2021-04-08 21:27:32 -04:00
flake.lock Prepare to make a template 2021-04-10 12:10:57 -04:00
flake.nix Prepare to make a template 2021-04-10 12:10:57 -04:00
README.md Prepare to make a template 2021-04-10 12:10:57 -04:00
shell.nix fmt 2021-04-06 23:42:49 -04:00

A template Rust project with fully functional and no-frills Nix support, as well as builtin VSCode configuration to get IDE support without doing anything (open in VSCode and accept the suggestions).

Adapting this template

Change name in Cargo.toml and flake.nix. Also change description in flake.nix.

Development (Flakes)

This repo uses Flakes from the get-go, but compat is provided for traditional nix-shell/nix-build as well (see the section below).

# Dev shell
nix develop

# or just run directly
nix run

# or run via cargo
nix develop -c cargo run

# build
nix build

Development (Legacy Nix)

# Dev shell
nix-shell

# run via cargo
nix-shell --run 'cargo run'

# build
nix-build