diff options
Diffstat (limited to 'ci-builds.nix')
-rw-r--r-- | ci-builds.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ci-builds.nix b/ci-builds.nix new file mode 100644 index 000000000000..5ffc14e318c2 --- /dev/null +++ b/ci-builds.nix @@ -0,0 +1,18 @@ +# 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.nixcon-demo + services.tazblog + tools.blog_cli + tools.emacs + tools.kms_pass +] + |