auth: switch domain
This commit is contained in:
parent
2e2968360c
commit
35b19d67d7
2 changed files with 6 additions and 6 deletions
|
@ -6,6 +6,7 @@
|
|||
}:
|
||||
let
|
||||
inherit (lib) mkForce getExe;
|
||||
inherit (config.my-lib.settings) idpUrl;
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
|
@ -223,7 +224,7 @@ in
|
|||
services.kanidm = {
|
||||
enableClient = true;
|
||||
clientSettings = {
|
||||
uri = "https://auth.xinyang.life";
|
||||
uri = "https://${idpUrl}";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
my-lib,
|
||||
...
|
||||
}:
|
||||
|
||||
|
@ -12,7 +11,7 @@ let
|
|||
mkEnableOption
|
||||
;
|
||||
|
||||
inherit (my-lib) idpUrl;
|
||||
inherit (config.my-lib.settings) idpUrl;
|
||||
|
||||
cfg = config.commonSettings.auth;
|
||||
in
|
||||
|
@ -25,7 +24,7 @@ in
|
|||
services.kanidm = {
|
||||
enableClient = true;
|
||||
clientSettings = {
|
||||
uri = "https://auth.xinyang.life";
|
||||
uri = "https://${idpUrl}";
|
||||
};
|
||||
enablePam = true;
|
||||
unixSettings = {
|
||||
|
@ -48,11 +47,11 @@ in
|
|||
environment.etc."ssh/auth" = {
|
||||
mode = "0555";
|
||||
text = ''
|
||||
#!${pkgs.stdenv.shell}
|
||||
#!/bin/sh
|
||||
${pkgs.kanidm}/bin/kanidm_ssh_authorizedkeys $1
|
||||
'';
|
||||
};
|
||||
users.groups.wheel.members = [ "xin@auth.xinyang.life" ];
|
||||
users.groups.wheel.members = [ "xin@${idpUrl}" ];
|
||||
users.groups.kanidm-ssh-runner = { };
|
||||
users.users.kanidm-ssh-runner = {
|
||||
isSystemUser = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue