2024-05-25 00:02:38 +02:00
|
|
|
{ pkgs, lib, ... }:
|
|
|
|
let
|
|
|
|
pkgs' = pkgs;
|
|
|
|
|
2024-07-12 13:01:26 +02:00
|
|
|
testLib = pkgs.callPackage ../common.nix {};
|
|
|
|
|
2024-05-25 00:02:38 +02:00
|
|
|
subdomain = "v";
|
|
|
|
domain = "example.com";
|
|
|
|
fqdn = "${subdomain}.${domain}";
|
|
|
|
|
2024-07-12 13:01:26 +02:00
|
|
|
commonTestScript = testLib.accessScript {
|
|
|
|
inherit fqdn;
|
|
|
|
hasSSL = { node, ... }: !(isNull node.config.shb.vaultwarden.ssl);
|
|
|
|
waitForServices = { ... }: [
|
|
|
|
"vaultwarden.service"
|
|
|
|
"nginx.service"
|
|
|
|
];
|
|
|
|
waitForPorts = { node, ... }: [
|
|
|
|
8222
|
|
|
|
5432
|
|
|
|
];
|
|
|
|
};
|
2024-05-25 00:02:38 +02:00
|
|
|
|
|
|
|
base = { config, ... }: {
|
|
|
|
imports = [
|
|
|
|
(pkgs'.path + "/nixos/modules/profiles/headless.nix")
|
|
|
|
(pkgs'.path + "/nixos/modules/profiles/qemu-guest.nix")
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
shb.backup = lib.mkOption { type = lib.types.anything; };
|
|
|
|
};
|
|
|
|
}
|
|
|
|
../../modules/blocks/nginx.nix
|
|
|
|
../../modules/blocks/postgresql.nix
|
|
|
|
../../modules/blocks/ssl.nix
|
|
|
|
../../modules/services/vaultwarden.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
# Nginx port.
|
|
|
|
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
|
|
|
|
|
|
|
shb.certs = {
|
|
|
|
cas.selfsigned.myca = {
|
|
|
|
name = "My CA";
|
|
|
|
};
|
|
|
|
certs.selfsigned = {
|
|
|
|
n = {
|
|
|
|
ca = config.shb.certs.cas.selfsigned.myca;
|
|
|
|
domain = "*.${domain}";
|
|
|
|
group = "nginx";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
systemd.services.nginx.after = [ config.shb.certs.certs.selfsigned.n.systemdService ];
|
|
|
|
systemd.services.nginx.requires = [ config.shb.certs.certs.selfsigned.n.systemdService ];
|
|
|
|
};
|
|
|
|
|
|
|
|
basic = { config, ... }: {
|
|
|
|
shb.vaultwarden = {
|
|
|
|
enable = true;
|
|
|
|
inherit subdomain domain;
|
|
|
|
ssl = config.shb.certs.certs.selfsigned.n;
|
|
|
|
port = 8222;
|
|
|
|
databasePasswordFile = pkgs.writeText "pwfile" "DBPASSWORDFILE";
|
|
|
|
};
|
|
|
|
|
|
|
|
networking.hosts = {
|
|
|
|
"127.0.0.1" = [ fqdn ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
ldap = { config, ... }: {
|
|
|
|
imports = [
|
|
|
|
../../modules/blocks/ldap.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
shb.ldap = {
|
|
|
|
enable = true;
|
|
|
|
inherit domain;
|
|
|
|
subdomain = "ldap";
|
|
|
|
ldapPort = 3890;
|
|
|
|
webUIListenPort = 17170;
|
|
|
|
dcdomain = "dc=example,dc=com";
|
|
|
|
ldapUserPasswordFile = pkgs.writeText "ldapUserPassword" "ldapUserPassword";
|
|
|
|
jwtSecretFile = pkgs.writeText "jwtSecret" "jwtSecret";
|
|
|
|
};
|
|
|
|
|
|
|
|
networking.hosts = {
|
|
|
|
"127.0.0.1" = [ "${config.shb.ldap.subdomain}.${domain}" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
# Not yet supported
|
|
|
|
# shb.vaultwarden = {
|
|
|
|
# ldapEndpoint = "http://127.0.0.1:${builtins.toString config.shb.ldap.webUIListenPort}";
|
|
|
|
# };
|
|
|
|
};
|
|
|
|
|
|
|
|
sso = { config, ... }: {
|
|
|
|
imports = [
|
|
|
|
../../modules/blocks/authelia.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
shb.authelia = {
|
|
|
|
enable = true;
|
|
|
|
inherit domain;
|
|
|
|
subdomain = "auth";
|
|
|
|
ssl = config.shb.certs.certs.selfsigned.n;
|
|
|
|
|
|
|
|
ldapEndpoint = "ldap://127.0.0.1:${builtins.toString config.shb.ldap.ldapPort}";
|
|
|
|
dcdomain = config.shb.ldap.dcdomain;
|
|
|
|
|
|
|
|
secrets = {
|
|
|
|
jwtSecretFile = pkgs.writeText "jwtSecret" "jwtSecret";
|
|
|
|
ldapAdminPasswordFile = pkgs.writeText "ldapUserPassword" "ldapUserPassword";
|
|
|
|
sessionSecretFile = pkgs.writeText "sessionSecret" "sessionSecret";
|
|
|
|
storageEncryptionKeyFile = pkgs.writeText "storageEncryptionKey" "storageEncryptionKey";
|
|
|
|
identityProvidersOIDCHMACSecretFile = pkgs.writeText "identityProvidersOIDCHMACSecret" "identityProvidersOIDCHMACSecret";
|
|
|
|
identityProvidersOIDCIssuerPrivateKeyFile = (pkgs.runCommand "gen-private-key" {} ''
|
|
|
|
mkdir $out
|
|
|
|
${pkgs.openssl}/bin/openssl genrsa -out $out/private.pem 4096
|
|
|
|
'') + "/private.pem";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
networking.hosts = {
|
|
|
|
"127.0.0.1" = [ "${config.shb.authelia.subdomain}.${domain}" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
shb.vaultwarden = {
|
|
|
|
authEndpoint = "https://${config.shb.authelia.subdomain}.${config.shb.authelia.domain}";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
basic = pkgs.testers.runNixOSTest {
|
|
|
|
name = "vaultwarden_basic";
|
|
|
|
|
|
|
|
nodes.server = lib.mkMerge [
|
|
|
|
base
|
|
|
|
basic
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
shb.authelia = lib.mkOption { type = lib.types.anything; };
|
|
|
|
};
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
nodes.client = {};
|
|
|
|
|
|
|
|
testScript = commonTestScript;
|
|
|
|
};
|
|
|
|
|
|
|
|
# Not yet supported
|
|
|
|
#
|
|
|
|
# ldap = pkgs.testers.runNixOSTest {
|
|
|
|
# name = "vaultwarden_ldap";
|
|
|
|
#
|
|
|
|
# nodes.server = lib.mkMerge [
|
|
|
|
# base
|
|
|
|
# basic
|
|
|
|
# ldap
|
|
|
|
# ];
|
|
|
|
#
|
|
|
|
# nodes.client = {};
|
|
|
|
#
|
|
|
|
# testScript = commonTestScript;
|
|
|
|
# };
|
|
|
|
|
|
|
|
sso = pkgs.testers.runNixOSTest {
|
|
|
|
name = "vaultwarden_sso";
|
|
|
|
|
|
|
|
nodes.server = lib.mkMerge [
|
|
|
|
base
|
|
|
|
basic
|
|
|
|
ldap
|
|
|
|
sso
|
|
|
|
];
|
|
|
|
|
|
|
|
nodes.client = {};
|
|
|
|
|
|
|
|
testScript = commonTestScript;
|
|
|
|
};
|
|
|
|
}
|