1
1
mirror of https://github.com/the-nix-way/dev-templates synced 2024-12-21 02:54:12 +01:00
Dev environments for numerous languages based on Nix flakes
Go to file
2024-07-20 11:19:20 -07:00
.github Add flake checker to CI 2024-06-25 00:34:09 -07:00
bun Update flake inputs 2024-07-19 19:24:58 -07:00
c-cpp Update flake inputs 2024-07-19 19:24:58 -07:00
clojure Fix shells 2024-07-20 11:19:20 -07:00
csharp Update flake inputs 2024-07-19 19:24:58 -07:00
cue Update flake inputs 2024-07-19 19:24:58 -07:00
dhall Update flake inputs 2024-07-19 19:24:58 -07:00
elixir Fix shells 2024-07-20 11:19:20 -07:00
elm Update flake inputs 2024-07-19 19:24:58 -07:00
empty Update flake inputs 2024-07-19 19:24:58 -07:00
gleam Update flake inputs 2024-07-19 19:24:58 -07:00
go Fix shells 2024-07-20 11:19:20 -07:00
hashi Update flake inputs 2024-07-19 19:24:58 -07:00
haskell Update flake inputs 2024-07-19 19:24:58 -07:00
haxe Update flake inputs 2024-07-19 19:24:58 -07:00
java Fix shells 2024-07-20 11:19:20 -07:00
kotlin Fix shells 2024-07-20 11:19:20 -07:00
latex Update flake inputs 2024-07-19 19:24:58 -07:00
nickel Update flake inputs 2024-07-19 19:24:58 -07:00
nim Update flake inputs 2024-07-19 19:24:58 -07:00
nix Update flake inputs 2024-07-19 19:24:58 -07:00
node Fix shells 2024-07-20 11:19:20 -07:00
ocaml Update flake inputs 2024-07-19 19:24:58 -07:00
opa Update flake inputs 2024-07-19 19:24:58 -07:00
php Update flake inputs 2024-07-19 19:24:58 -07:00
protobuf Update flake inputs 2024-07-19 19:24:58 -07:00
pulumi Update flake inputs 2024-07-19 19:24:58 -07:00
purescript Update flake inputs 2024-07-19 19:24:58 -07:00
python Update flake inputs 2024-07-19 19:24:58 -07:00
r Fix shells 2024-07-20 11:19:20 -07:00
ruby Update flake inputs 2024-07-19 19:24:58 -07:00
rust Fix shells 2024-07-20 11:19:20 -07:00
rust-toolchain Fix shells 2024-07-20 11:19:20 -07:00
scala Fix shells 2024-07-20 11:19:20 -07:00
shell Update flake inputs 2024-07-19 19:24:58 -07:00
vlang Update flake inputs 2024-07-19 19:24:58 -07:00
zig Update flake inputs 2024-07-19 19:24:58 -07:00
.editorconfig Add editorconfig file 2022-07-12 02:01:42 +02:00
.envrc Update clojure and csharp 2023-07-13 15:15:22 -07:00
.gitignore Add dvt script to flake outputs 2022-10-21 11:12:21 +02:00
flake.lock vlang 2024-04-15 20:28:52 -05:00
flake.nix Add nixpkgs-fmt to dev shell 2024-06-25 00:46:34 -07:00
README.md Merge pull request #38 from nueidris/R 2024-06-22 10:56:59 -07:00

Nix flake templates for easy dev environments

built with nix

To initialize (where ${ENV} is listed in the table below):

nix flake init --template github:the-nix-way/dev-templates#${ENV}

Here's an example (for the rust template):

# Initialize in the current project
nix flake init --template github:the-nix-way/dev-templates#rust

# Create a new project
nix flake new --template github:the-nix-way/dev-templates#rust ${NEW_PROJECT_DIRECTORY}

How to use the templates

Once your preferred template has been initialized, you can use the provided shell in two ways:

  1. If you have nix-direnv installed, you can initialize the environment by running direnv allow.
  2. If you don't have nix-direnv installed, you can run nix develop to open up the Nix-defined shell.

Available templates

Language/framework/tool Template
Bun bun
C/C++ c-cpp
Clojure clojure
C# csharp
Cue cue
Dhall dhall
Elixir elixir
Elm elm
Empty (change at will) empty
Gleam gleam
Go go
Hashicorp tools hashi
Haxe haxe
Java java
Kotlin kotlin
LaTeX latex
Nickel nickel
Nim nim
Nix nix
Node.js node
OCaml ocaml
Open Policy Agent opa
PHP php
Protobuf protobuf
Pulumi pulumi
Purescript purescript
R r
Ruby ruby
Rust rust
Scala scala
[Shell] shell
Vlang vlang
Zig zig

Template contents

The sections below list what each template includes. In all cases, you're free to add and remove packages as you see fit; the templates are just boilerplate.

bun

c-cpp

clojure

csharp

cue

dhall

elixir

elm

Empty

A dev template that's fully customizable.

gleam

go

hashi

haskell

haxe

java

kotlin

latex

nickel

nim

nix

node

ocaml

opa

php

protobuf

pulumi

purescript

python

r

ruby

  • Ruby 3.2.2, plus the standard Ruby tools (bundle, gem, etc.)

rust

  • Rust, including cargo, Clippy, and the other standard tools. The Rust version is determined as follows, in order:

    • From the rust-toolchain.toml file if present
    • From the rust-toolchain file if present
    • Version 1.78.0 if neither is present
  • rust-analyzer 2024-04-29

  • [cargo-edit] 0.12.2

  • cargo-deny 0.14.23

scala

shell

Vlang

zig

Code organization

All of the templates have only the root flake as a flake input. That root flake provides a common revision of Nixpkgs and flake-utils to all the templates.