tvl-depot/ci-builds.nix
Vincent Ambo e9431682b2 refactor: Move CI setup to separate Nix file
Instead of polluting the repository namespace with the list of CI
projects, move that to a separate file.

Currently the list of projects to be built by CI is still hardcoded,
but this will be fixed soon.
2019-12-09 10:58:09 +00:00

17 lines
398 B
Nix

# This file is invoked by the CI build and recursively filters the
# package set for attributes that should be built automatically.
#
# Packages can be opted-in to being built by CI by setting
# `meta.enableCI = true`.
#
# TODO(tazjin): Actually implement the above.
let
pkgs = import ./default.nix;
in with pkgs; [
services.tazblog
services.nixcon-demo
tools.kms_pass
tools.blog_cli
]