nixos/system/registry.nix
Evie Litherland-Smith 42dc4efdd2 Add Iosevka flake registry entry
Remove pyenv and jupyter registry entries since I don't use them any
more.
2024-03-18 09:44:31 +00:00

25 lines
463 B
Nix

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