feat: dev-registry for dev environments

This commit is contained in:
2026-03-27 15:05:09 +01:00
parent c40fbaec57
commit 38cdcebddd
4 changed files with 119 additions and 10 deletions

16
features/dev-registry.nix Normal file
View File

@@ -0,0 +1,16 @@
{
nixos =
{ inputs, ... }:
{
nix.registry.dev = {
from = {
type = "indirect";
id = "dev";
};
to = {
type = "path";
path = inputs.self.outPath;
};
};
};
}