268729083e
NixOS modules move one level up because it's unlikely that //ops/nixos will contain actual systems at this point (they're user-specific). This is the first users folder, so it is also added to the root readTree invocation for the repository. Change-Id: I546c701145fa204b7ba7518a8a56a783588629e0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/244 Reviewed-by: tazjin <mail@tazj.in>
35 lines
796 B
Nix
35 lines
796 B
Nix
# This file defines the derivations that should be built by CI.
|
|
#
|
|
# The plan is still to implement recursive tree traversal
|
|
# automatically and detect all derivations that have `meta.enableCI =
|
|
# true`, but this is currently more effort than it would save me.
|
|
|
|
with (import ./default.nix {}); [
|
|
fun.amsterdump
|
|
fun.gemma
|
|
fun.quinistry
|
|
fun.watchblob
|
|
fun.wcl
|
|
lisp.dns
|
|
nix.buildLisp.example
|
|
nix.yants.tests
|
|
ops."posix_mq.rs"
|
|
ops.besadii
|
|
ops.journaldriver
|
|
ops.kms_pass
|
|
ops.kontemplate
|
|
ops.mq_cli
|
|
third_party.cgit
|
|
third_party.git
|
|
third_party.lisp # will build all third-party libraries
|
|
third_party.nix
|
|
tools.cheddar
|
|
tools.emacs
|
|
web.blog
|
|
web.cgit-taz
|
|
web.tvl
|
|
|
|
# tazjin's personal things
|
|
users.tazjin.nixos.camdenSystem
|
|
users.tazjin.nixos.frogSystem
|
|
]
|