secrets: add sso
This commit is contained in:
parent
fd526b674b
commit
878759cb77
|
@ -58,6 +58,8 @@ throwOnCanary {
|
||||||
|
|
||||||
podgrab.password = fileContents ./podgrab/password.txt;
|
podgrab.password = fileContents ./podgrab/password.txt;
|
||||||
|
|
||||||
|
sso = import ./sso { inherit lib; };
|
||||||
|
|
||||||
transmission.password = fileContents ./transmission/password.txt;
|
transmission.password = fileContents ./transmission/password.txt;
|
||||||
|
|
||||||
users = {
|
users = {
|
||||||
|
|
1
secrets/sso/.gitattributes
vendored
Normal file
1
secrets/sso/.gitattributes
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/default.nix filter diff
|
BIN
secrets/sso/ambroisie/password-hash.txt
Normal file
BIN
secrets/sso/ambroisie/password-hash.txt
Normal file
Binary file not shown.
BIN
secrets/sso/ambroisie/totp-secret.txt
Normal file
BIN
secrets/sso/ambroisie/totp-secret.txt
Normal file
Binary file not shown.
BIN
secrets/sso/auth-key.txt
Normal file
BIN
secrets/sso/auth-key.txt
Normal file
Binary file not shown.
21
secrets/sso/default.nix
Normal file
21
secrets/sso/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{ lib }:
|
||||||
|
let
|
||||||
|
inherit (lib) fileContents;
|
||||||
|
importUser = (user: {
|
||||||
|
# bcrypt hashed: `htpasswd -BnC 10 ""`
|
||||||
|
passwordHash = fileContents (./. + "/${user}/password-hash.txt");
|
||||||
|
# base32 encoded: `printf '<secret>' | base32 | tr -d =`
|
||||||
|
totpSecret = fileContents (./. + "/${user}/totp-secret.txt");
|
||||||
|
});
|
||||||
|
in
|
||||||
|
{
|
||||||
|
auth_key = fileContents ./auth-key.txt;
|
||||||
|
|
||||||
|
users = lib.flip lib.genAttrs importUser [
|
||||||
|
"ambroisie"
|
||||||
|
];
|
||||||
|
|
||||||
|
groups = {
|
||||||
|
root = [ "ambroisie" ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue