refactor(whitby): Prepare for restricted-eval
Change-Id: I7604ca29310d759b0ffee2ffb0048b6365a2894c Reviewed-on: https://cl.tvl.fyi/c/depot/+/5683 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org> Autosubmit: tazjin <tazjin@tvl.su>
This commit is contained in:
parent
9eb4002d18
commit
250300f167
1 changed files with 42 additions and 40 deletions
|
@ -4,49 +4,51 @@
|
|||
let
|
||||
inherit (builtins) listToAttrs;
|
||||
inherit (lib) range;
|
||||
|
||||
mod = name: depot.path.origSrc + ("/ops/modules/" + name);
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
"${depot.path}/ops/modules/atward.nix"
|
||||
"${depot.path}/ops/modules/cgit/default.nix"
|
||||
"${depot.path}/ops/modules/clbot.nix"
|
||||
"${depot.path}/ops/modules/gerrit-queue.nix"
|
||||
"${depot.path}/ops/modules/irccat.nix"
|
||||
"${depot.path}/ops/modules/josh.nix"
|
||||
"${depot.path}/ops/modules/journaldriver.nix"
|
||||
"${depot.path}/ops/modules/known-hosts.nix"
|
||||
"${depot.path}/ops/modules/monorepo-gerrit.nix"
|
||||
"${depot.path}/ops/modules/nixery.nix"
|
||||
"${depot.path}/ops/modules/oauth2_proxy.nix"
|
||||
"${depot.path}/ops/modules/owothia.nix"
|
||||
"${depot.path}/ops/modules/panettone.nix"
|
||||
"${depot.path}/ops/modules/paroxysm.nix"
|
||||
"${depot.path}/ops/modules/restic.nix"
|
||||
"${depot.path}/ops/modules/smtprelay.nix"
|
||||
"${depot.path}/ops/modules/sourcegraph.nix"
|
||||
"${depot.path}/ops/modules/tvl-buildkite.nix"
|
||||
"${depot.path}/ops/modules/tvl-slapd/default.nix"
|
||||
"${depot.path}/ops/modules/tvl-users.nix"
|
||||
"${depot.path}/ops/modules/www/atward.tvl.fyi.nix"
|
||||
"${depot.path}/ops/modules/www/auth.tvl.fyi.nix"
|
||||
"${depot.path}/ops/modules/www/b.tvl.fyi.nix"
|
||||
"${depot.path}/ops/modules/www/cache.tvl.su.nix"
|
||||
"${depot.path}/ops/modules/www/cl.tvl.fyi.nix"
|
||||
"${depot.path}/ops/modules/www/code.tvl.fyi.nix"
|
||||
"${depot.path}/ops/modules/www/cs.tvl.fyi.nix"
|
||||
"${depot.path}/ops/modules/www/deploys.tvl.fyi.nix"
|
||||
"${depot.path}/ops/modules/www/images.tvl.fyi.nix"
|
||||
"${depot.path}/ops/modules/www/nixery.dev.nix"
|
||||
"${depot.path}/ops/modules/www/self-redirect.nix"
|
||||
"${depot.path}/ops/modules/www/static.tvl.fyi.nix"
|
||||
"${depot.path}/ops/modules/www/status.tvl.su.nix"
|
||||
"${depot.path}/ops/modules/www/tazj.in.nix"
|
||||
"${depot.path}/ops/modules/www/todo.tvl.fyi.nix"
|
||||
"${depot.path}/ops/modules/www/tvl.fyi.nix"
|
||||
"${depot.path}/ops/modules/www/tvl.su.nix"
|
||||
"${depot.path}/ops/modules/www/wigglydonke.rs.nix"
|
||||
"${depot.third_party.agenix.src}/modules/age.nix"
|
||||
"${pkgs.path}/nixos/modules/services/web-apps/gerrit.nix"
|
||||
(mod "atward.nix")
|
||||
(mod "cgit/default.nix")
|
||||
(mod "clbot.nix")
|
||||
(mod "gerrit-queue.nix")
|
||||
(mod "irccat.nix")
|
||||
(mod "josh.nix")
|
||||
(mod "journaldriver.nix")
|
||||
(mod "known-hosts.nix")
|
||||
(mod "monorepo-gerrit.nix")
|
||||
(mod "nixery.nix")
|
||||
(mod "oauth2_proxy.nix")
|
||||
(mod "owothia.nix")
|
||||
(mod "panettone.nix")
|
||||
(mod "paroxysm.nix")
|
||||
(mod "restic.nix")
|
||||
(mod "smtprelay.nix")
|
||||
(mod "sourcegraph.nix")
|
||||
(mod "tvl-buildkite.nix")
|
||||
(mod "tvl-slapd/default.nix")
|
||||
(mod "tvl-users.nix")
|
||||
(mod "www/atward.tvl.fyi.nix")
|
||||
(mod "www/auth.tvl.fyi.nix")
|
||||
(mod "www/b.tvl.fyi.nix")
|
||||
(mod "www/cache.tvl.su.nix")
|
||||
(mod "www/cl.tvl.fyi.nix")
|
||||
(mod "www/code.tvl.fyi.nix")
|
||||
(mod "www/cs.tvl.fyi.nix")
|
||||
(mod "www/deploys.tvl.fyi.nix")
|
||||
(mod "www/images.tvl.fyi.nix")
|
||||
(mod "www/nixery.dev.nix")
|
||||
(mod "www/self-redirect.nix")
|
||||
(mod "www/static.tvl.fyi.nix")
|
||||
(mod "www/status.tvl.su.nix")
|
||||
(mod "www/tazj.in.nix")
|
||||
(mod "www/todo.tvl.fyi.nix")
|
||||
(mod "www/tvl.fyi.nix")
|
||||
(mod "www/tvl.su.nix")
|
||||
(mod "www/wigglydonke.rs.nix")
|
||||
|
||||
(depot.third_party.agenix.src + "/modules/age.nix")
|
||||
];
|
||||
|
||||
hardware = {
|
||||
|
|
Loading…
Reference in a new issue