blob: 916317ea56f0493b73e9768201de3a90caf52f87 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# 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
]
|