nixos/system/registry.nix

35 lines
639 B
Nix
Raw Normal View History

{...}: {
nix.registry = {
nixos = {
from = {
type = "indirect";
id = "nixos";
};
to = {
type = "git";
url = "https://git.xenia.me.uk/xenia/nixos.git?ref=main";
};
};
pyenv = {
from = {
type = "indirect";
id = "pyenv";
};
to = {
type = "git";
url = "https://git.xenia.me.uk/utils/pyenv.git";
};
};
jupyter = {
from = {
type = "indirect";
id = "jupyter";
};
to = {
type = "git";
url = "https://git.xenia.me.uk/xenia/nix-jupyter.git";
};
};
};
}