commit
ea1e06f9fe
2 changed files with 73 additions and 0 deletions
|
|
@ -5,8 +5,13 @@
|
||||||
buildGo124Module,
|
buildGo124Module,
|
||||||
lib,
|
lib,
|
||||||
makeWrapper,
|
makeWrapper,
|
||||||
|
guacamole-server,
|
||||||
|
stdenv,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
guacamoleAvailable = lib.meta.availableOn stdenv.hostPlatform guacamole-server;
|
||||||
|
in
|
||||||
buildGo124Module {
|
buildGo124Module {
|
||||||
pname = "authentik-gopkgs";
|
pname = "authentik-gopkgs";
|
||||||
version = authentik-version;
|
version = authentik-version;
|
||||||
|
|
@ -14,6 +19,10 @@ buildGo124Module {
|
||||||
sed -i"" -e 's,./web/dist/,${authentikComponents.frontend}/dist/,' web/static.go
|
sed -i"" -e 's,./web/dist/,${authentikComponents.frontend}/dist/,' web/static.go
|
||||||
sed -i"" -e 's,./web/dist/,${authentikComponents.frontend}/dist/,' internal/web/static.go
|
sed -i"" -e 's,./web/dist/,${authentikComponents.frontend}/dist/,' internal/web/static.go
|
||||||
sed -i"" -e 's,./lifecycle/gunicorn.conf.py,${authentikComponents.staticWorkdirDeps}/lifecycle/gunicorn.conf.py,' internal/gounicorn/gounicorn.go
|
sed -i"" -e 's,./lifecycle/gunicorn.conf.py,${authentikComponents.staticWorkdirDeps}/lifecycle/gunicorn.conf.py,' internal/gounicorn/gounicorn.go
|
||||||
|
'' + lib.optionalString guacamoleAvailable ''
|
||||||
|
substituteInPlace internal/outpost/rac/guacd.go \
|
||||||
|
--replace-fail '/opt/guacamole/sbin/guacd' \
|
||||||
|
"${lib.getExe guacamole-server}"
|
||||||
'';
|
'';
|
||||||
src = lib.cleanSourceWith {
|
src = lib.cleanSourceWith {
|
||||||
src = authentik-src;
|
src = authentik-src;
|
||||||
|
|
@ -41,12 +50,16 @@ buildGo124Module {
|
||||||
"ldap"
|
"ldap"
|
||||||
"proxy"
|
"proxy"
|
||||||
"radius"
|
"radius"
|
||||||
|
] ++ lib.optionals guacamoleAvailable [
|
||||||
|
"rac"
|
||||||
];
|
];
|
||||||
subPackages = [
|
subPackages = [
|
||||||
"cmd/ldap"
|
"cmd/ldap"
|
||||||
"cmd/server"
|
"cmd/server"
|
||||||
"cmd/proxy"
|
"cmd/proxy"
|
||||||
"cmd/radius"
|
"cmd/radius"
|
||||||
|
] ++ lib.optionals guacamoleAvailable [
|
||||||
|
"cmd/rac"
|
||||||
];
|
];
|
||||||
vendorHash = "sha256-wTTEDBRYCW1UFaeX49ufLT0c17sacJzcCaW/8cPNYR4=";
|
vendorHash = "sha256-wTTEDBRYCW1UFaeX49ufLT0c17sacJzcCaW/8cPNYR4=";
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
@ -59,5 +72,8 @@ buildGo124Module {
|
||||||
mv $out/bin/ldap $ldap/bin/
|
mv $out/bin/ldap $ldap/bin/
|
||||||
mv $out/bin/proxy $proxy/bin/
|
mv $out/bin/proxy $proxy/bin/
|
||||||
mv $out/bin/radius $radius/bin/
|
mv $out/bin/radius $radius/bin/
|
||||||
|
'' + lib.optionalString guacamoleAvailable ''
|
||||||
|
mkdir -p $rac/bin
|
||||||
|
mv $out/bin/rac $rac/bin/
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
|
||||||
57
module.nix
57
module.nix
|
|
@ -204,6 +204,29 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# RAC oupost
|
||||||
|
authentik-rac = {
|
||||||
|
enable = mkEnableOption "authentik RAC outpost";
|
||||||
|
|
||||||
|
environmentFile = mkOption {
|
||||||
|
type = types.nullOr pathToSecret;
|
||||||
|
default = null;
|
||||||
|
example = "/run/secrets/authentik-rac/authentik-rac-env";
|
||||||
|
description = ''
|
||||||
|
Environment file as defined in {manpage}`systemd.exec(5)`.
|
||||||
|
|
||||||
|
Secrets may be passed to the service without adding them to the world-readable
|
||||||
|
/nix/store, by specifying the desied secrets as environment variables according
|
||||||
|
to the authentic documentation.
|
||||||
|
|
||||||
|
```
|
||||||
|
# example content
|
||||||
|
AUTHENTIK_TOKEN=<token from authentik for this outpost>
|
||||||
|
```
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# RADIUS oupost
|
# RADIUS oupost
|
||||||
authentik-radius = {
|
authentik-radius = {
|
||||||
enable = mkEnableOption "authentik RADIUS outpost";
|
enable = mkEnableOption "authentik RADIUS outpost";
|
||||||
|
|
@ -497,6 +520,40 @@ in
|
||||||
}
|
}
|
||||||
))
|
))
|
||||||
|
|
||||||
|
# RAC outpost
|
||||||
|
(mkIf config.services.authentik-rac.enable (
|
||||||
|
let
|
||||||
|
cfg = config.services.authentik-rac;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
assertions = [
|
||||||
|
{
|
||||||
|
assertion = config.services.authentik.authentikComponents.gopkgs?rac;
|
||||||
|
message = ''
|
||||||
|
guacamole-server is not available on the host's platform!
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
];
|
||||||
|
systemd.services.authentik-rac = {
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
wants = [ "network-online.target" ];
|
||||||
|
after = [
|
||||||
|
"network-online.target"
|
||||||
|
"authentik.service"
|
||||||
|
];
|
||||||
|
serviceConfig = {
|
||||||
|
RuntimeDirectory = "authentik-rac";
|
||||||
|
UMask = "0027";
|
||||||
|
WorkingDirectory = "%t/authentik-rac";
|
||||||
|
DynamicUser = true;
|
||||||
|
ExecStart = "${config.services.authentik.authentikComponents.gopkgs.rac}/bin/rac";
|
||||||
|
EnvironmentFile = mkIf (cfg.environmentFile != null) [ cfg.environmentFile ];
|
||||||
|
Restart = "on-failure";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
))
|
||||||
|
|
||||||
# RADIUS outpost
|
# RADIUS outpost
|
||||||
(mkIf config.services.authentik-radius.enable (
|
(mkIf config.services.authentik-radius.enable (
|
||||||
let
|
let
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue