From 5d858facb2af0b04c90ab65cd1c72bb553bdcd45 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 9 Nov 2025 14:42:09 +0100 Subject: [PATCH] nixos/nix-channel: default to channels.nixos.org Infra is interested in deprecating the redirect over the domain apex eventually, since it is just a redirect to channels.nixos.org, which we can more reliably redistribute with a CDN. The nixos.org domain currently offers no IPv6 due to issues we've had with our DNS hoster. (cf. nixos/infra#873) --- nixos/modules/config/nix-channel.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/config/nix-channel.nix b/nixos/modules/config/nix-channel.nix index 23b414f8194b..b05505687193 100644 --- a/nixos/modules/config/nix-channel.nix +++ b/nixos/modules/config/nix-channel.nix @@ -71,7 +71,7 @@ in defaultChannel = mkOption { internal = true; type = types.str; - default = "https://nixos.org/channels/nixos-unstable"; + default = "https://channels.nixos.org/nixos-unstable"; description = "Default NixOS channel to which the root user is subscribed."; }; };