Improve aesthetics of table
This commit is contained in:
parent
eb8b004042
commit
f6d7e1f56a
42
README.md
42
README.md
|
@ -1,19 +1,33 @@
|
||||||
# Nix flake templates for easy dev environments
|
# Nix flake templates for easy dev environments
|
||||||
|
|
||||||
| Language/framework/tool | Init command |
|
To initialize (where `${ENV}` is listed in the table below):
|
||||||
| :---------------------- | :------------------------------------------------------------------- |
|
|
||||||
| [Dhall] | `nix flake init --template github:the-nix-way/dev-templates#dhall` |
|
```shell
|
||||||
| [Elixir] | `nix flake init --template github:the-nix-way/dev-templates#elixir` |
|
nix flake init --template github:the-nix-way/dev-templates#${ENV}
|
||||||
| [Gleam] | `nix flake init --template github:the-nix-way/dev-templates#gleam` |
|
```
|
||||||
| [Go] 1.17 | `nix flake init --template github:the-nix-way/dev-templates#go_1_17` |
|
|
||||||
| [Go] 1.18 | `nix flake init --template github:the-nix-way/dev-templates#go_1_18` |
|
Here's an example (for the [`rust`](./rust) template):
|
||||||
| [Java] | `nix flake init --template github:the-nix-way/dev-templates#java` |
|
|
||||||
| [Kotlin] | `nix flake init --template github:the-nix-way/dev-templates#kotlin` |
|
```shell
|
||||||
| [Nix] | `nix flake init --template github:the-nix-way/dev-templates#nix` |
|
nix flake init --template github:the-nix-way/dev-templates#rust
|
||||||
| [Node.js][node] | `nix flake init --template github:the-nix-way/dev-templates#node` |
|
```
|
||||||
| [Rust] | `nix flake init --template github:the-nix-way/dev-templates#rust` |
|
|
||||||
| [Scala] | `nix flake init --template github:the-nix-way/dev-templates#scala` |
|
Available templates:
|
||||||
| [Zig] | `nix flake init --template github:the-nix-way/dev-templates#zig` |
|
|
||||||
|
| Language/framework/tool | Template |
|
||||||
|
| :---------------------- | :-------------------- |
|
||||||
|
| [Dhall] | [`dhall`](./dhall/) |
|
||||||
|
| [Elixir] | [`elixir`](./elixir/) |
|
||||||
|
| [Gleam] | [`gleam`](./gleam/) |
|
||||||
|
| [Go] 1.17 | [`go1_17`](./go1.17/) |
|
||||||
|
| [Go] 1.18 | [`go1_18`](./go1.18/) |
|
||||||
|
| [Java] | [`java`](./java/) |
|
||||||
|
| [Kotlin] | [`kotlin`](./kotlin/) |
|
||||||
|
| [Nix] | [`nix`](./nix/) |
|
||||||
|
| [Node.js][node] | [`node`](./node/) |
|
||||||
|
| [Rust] | [`rust`](./rust/) |
|
||||||
|
| [Scala] | [`scala`](./scala/) |
|
||||||
|
| [Zig] | [`zig`](./zig/) |
|
||||||
|
|
||||||
[dhall]: https://dhall-lang.org
|
[dhall]: https://dhall-lang.org
|
||||||
[elixir]: https://elixir-lang.org
|
[elixir]: https://elixir-lang.org
|
||||||
|
|
|
@ -48,12 +48,12 @@
|
||||||
description = "Gleam development environment";
|
description = "Gleam development environment";
|
||||||
};
|
};
|
||||||
|
|
||||||
go_1_17 = {
|
go1_17 = {
|
||||||
path = ./go1.17;
|
path = ./go1.17;
|
||||||
description = "Go 1.17 development environment";
|
description = "Go 1.17 development environment";
|
||||||
};
|
};
|
||||||
|
|
||||||
go_1_18 = {
|
go1_18 = {
|
||||||
path = ./go1.18;
|
path = ./go1.18;
|
||||||
description = "Go 1.18 development environment";
|
description = "Go 1.18 development environment";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue