We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6795b77 commit 9a3a218Copy full SHA for 9a3a218
flake.nix
@@ -3,12 +3,14 @@
3
4
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
5
6
- outputs = { nixpkgs, ... }:
+ outputs =
7
+ { nixpkgs, ... }:
8
let
9
forAllSystems = nixpkgs.lib.genAttrs nixpkgs.lib.systems.flakeExposed;
10
in
11
{
- devShells = forAllSystems (system:
12
+ devShells = forAllSystems (
13
+ system:
14
15
pkgs = nixpkgs.legacyPackages.${system};
16
@@ -31,6 +33,10 @@
31
33
path = ./template/go;
32
34
description = "Setup Go Project";
35
};
36
+ zig = {
37
+ path = ./template/zig;
38
+ description = "Setup Zig Project";
39
+ };
40
java = {
41
path = ./template/java;
42
description = "Setup Java Project";
0 commit comments