ci-root: split out authentik

This commit is contained in:
Luke Granger-Brown 2022-05-13 22:47:45 +00:00
parent 5402286846
commit 98a1ed6300

View file

@ -12,13 +12,16 @@ let
ciBits = rec {
x86_64-linux = {
machine = depot.ops.nixos.systems;
pkgs = builtins.removeAttrs depot.nix.pkgs [ "grafana-plugins" "windows" "unifiHacked" "nixpkgs-mozilla" "nightlyRust" "nightlyRustPlatform" "baserow" "baserow-oss" ];
pkgs = builtins.removeAttrs depot.nix.pkgs [ "grafana-plugins" "windows" "unifiHacked" "nixpkgs-mozilla" "nightlyRust" "nightlyRustPlatform" "baserow" "baserow-oss" "authentik" ];
pkg-baserow = {
inherit (depot.nix.pkgs.baserow) backend web-frontend mjml-tcpserver;
};
pkg-baserow-oss = {
inherit (depot.nix.pkgs.baserow-oss) backend web-frontend mjml-tcpserver;
};
pkg-authentik = {
inherit (depot.nix.pkgs.authentik) docs webui pythonapp goserver server;
};
pkg-grafana-plugins = depot.nix.pkgs.grafana-plugins;
web = lib.filterAttrs (n: v: !lib.isFunction v) depot.web;
trains = depot.go.trains.cmd.bins;