From 98a1ed6300b1a693a80319118e4066041fd8ca5b Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Fri, 13 May 2022 22:47:45 +0000 Subject: [PATCH] ci-root: split out authentik --- ci-root.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ci-root.nix b/ci-root.nix index 0c97fafac1..621108ac80 100644 --- a/ci-root.nix +++ b/ci-root.nix @@ -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;