templates: categorize by pkgs v.s. env

This commit is contained in:
Colin 2023-04-26 07:35:04 +00:00
parent ba11bba909
commit 83e404f000
8 changed files with 6 additions and 6 deletions

View File

@ -282,18 +282,18 @@
};
templates = {
python-data = {
env.python-data = {
# initialize with:
# - `nix flake init -t '/home/colin/dev/nixos/#python-data'`
# - `nix flake init -t '/home/colin/dev/nixos/#env.python-data'`
# then enter with:
# - `nix develop`
path = ./templates/python-data;
path = ./templates/env/python-data;
description = "python environment for data processing";
};
rust = {
pkgs.rust-inline = {
# initialize with:
# - `nix flake init -t '/home/colin/dev/nixos/#rust'`
path = ./templates/rust;
# - `nix flake init -t '/home/colin/dev/nixos/#pkgs.rust-inline'`
path = ./templates/pkgs/rust-inline;
description = "rust package and development environment";
};
};