env: add simple env to test out buildEnv and profiles

This commit is contained in:
Primrose 2025-05-10 19:27:01 +02:00
parent a37ac14681
commit 6b71947f89
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
2 changed files with 23 additions and 0 deletions

11
nix/environments/nix.nix Normal file
View file

@ -0,0 +1,11 @@
{
buildEnv,
#
nixfmt-rfc-style,
}:
buildEnv {
name = "nix";
paths = [
nixfmt-rfc-style
];
}