labs/foundation/src/mirrors/default.nix

11 lines
207 B
Nix
Raw Normal View History

2024-06-22 17:58:44 +00:00
{ lib }:
{
options.aux.mirrors = {
gnu = lib.options.create {
type = lib.types.string;
default.value = "https://ftp.gnu.org/gnu";
description = "The GNU mirror to use";
};
};
}