-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
32 lines (27 loc) · 849 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
description = "A collection of templates from FalconProgrammer - Jonathan Boyle";
outputs = {self}: {
templates = {
python-pdm = {
path = ./python-pdm;
description = "A template for a python project using pdm";
};
python-shell = {
path = ./python-shell;
description = "A template to create a python shell with certain packages";
};
python-poetry2nix = {
path = ./python-poetry2nix;
description = "A template for a python project using poetry2nix";
};
default-package-flake = {
path = ./default-package-flake;
description = "A basic flake for building a default.nix package";
};
rust-bevy = {
path = ./rust-bevy;
description = "A NixOS development flake for Bevy development.";
};
};
};
}