# Taken from https://github.com/NixOS/infra/blob/master/channels.nix { # "Channel name" = { # # This should be the part of # # https://hydra.forkos.org/job//latest-finished # job = "project/jobset/jobname"; # # # When adding a new version, determine if it needs to be tagged as a # # variant -- for example: # # nixos-xx.xx => primary # # nixos-xx.xx-small => small # # nixos-xx.xx-darwin => darwin # # nixos-xx.xx-aarch64 => aarch64 # variant = "primary"; # # # Channel Status: # # '*-unstable' channels are always "rolling" # # Otherwise a release generally progresses through the following phases: # # # # - Directly after branch off => "beta" # # - Once the channel is released => "stable" # # - Once the next channel is released => "deprecated" # # - N months after the next channel is released => "unmaintained" # # (check the release notes for when this should happen) # status = "beta"; # }; "forkos-unstable" = { job = "forkos/nixos-main/tested"; variant = "primary"; status = "rolling"; }; }