17 lines
252 B
Nix
17 lines
252 B
Nix
{
|
|
nixos =
|
|
{ inputs, ... }:
|
|
{
|
|
nix.registry.dev = {
|
|
from = {
|
|
type = "indirect";
|
|
id = "dev";
|
|
};
|
|
to = {
|
|
type = "path";
|
|
path = inputs.self.outPath;
|
|
};
|
|
};
|
|
};
|
|
}
|