@@ -28,6 +28,7 @@ let
|
28 | 28 | DOCUMENTATION_URL = lib.optionalString (cfg.distroId == "nixos") "https://nixos.org/learn.html"; |
29 | 29 | SUPPORT_URL = lib.optionalString (cfg.distroId == "nixos") "https://nixos.org/community.html"; |
30 | 30 | BUG_REPORT_URL = lib.optionalString (cfg.distroId == "nixos") "https://github.com/NixOS/nixpkgs/issues"; |
| 31 | +SUPPORT_END = "2023-12-31"; |
31 | 32 | } // lib.optionalAttrs (cfg.variant_id != null) { |
32 | 33 | VARIANT_ID = cfg.variant_id; |
33 | 34 | }; |
|
143 | 144 | defaultChannel = mkOption { |
144 | 145 | internal = true; |
145 | 146 | type = types.str; |
146 | | -default = "https://nixos.org/channels/nixos-unstable"; |
| 147 | +default = "https://nixos.org/channels/nixos-23.05"; |
147 | 148 | description = lib.mdDoc "Default NixOS channel to which the root user is subscribed."; |
148 | 149 | }; |
149 | 150 | |
|