templates: categorize by pkgs v.s. env

This commit is contained in:
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 = { templates = {
python-data = { env.python-data = {
# initialize with: # 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: # then enter with:
# - `nix develop` # - `nix develop`
path = ./templates/python-data; path = ./templates/env/python-data;
description = "python environment for data processing"; description = "python environment for data processing";
}; };
rust = { pkgs.rust-inline = {
# initialize with: # initialize with:
# - `nix flake init -t '/home/colin/dev/nixos/#rust'` # - `nix flake init -t '/home/colin/dev/nixos/#pkgs.rust-inline'`
path = ./templates/rust; path = ./templates/pkgs/rust-inline;
description = "rust package and development environment"; description = "rust package and development environment";
}; };
}; };