nichts/modules/system/nix/registry.nix

10 lines
170 B
Nix
Raw Normal View History

2024-09-22 01:47:19 +02:00
{inputs, ...}: {
2024-08-16 16:03:47 +02:00
# Big thanks to Dianimo for this!
nix = {
registry = {
nixpkgs.flake = inputs.nixpkgs;
default.flake = inputs.nixpkgs;
};
};
}