2023-07-01 18:46:19 +02:00
|
|
|
{
|
|
|
|
description = "Home Assistant example for Self Host Blocks";
|
|
|
|
|
|
|
|
inputs = {
|
2023-12-09 19:16:41 +01:00
|
|
|
selfhostblocks.url = "github:ibizaman/selfhostblocks";
|
2023-07-01 18:46:19 +02:00
|
|
|
};
|
|
|
|
|
2023-12-26 08:31:59 +01:00
|
|
|
outputs = inputs@{ self, selfhostblocks, ... }: {
|
2023-07-01 18:46:19 +02:00
|
|
|
colmena = {
|
|
|
|
meta = {
|
2023-12-26 08:31:59 +01:00
|
|
|
nixpkgs = import selfhostblocks.inputs.nixpkgs {
|
2023-07-01 18:46:19 +02:00
|
|
|
system = "x86_64-linux";
|
|
|
|
};
|
|
|
|
specialArgs = inputs;
|
|
|
|
};
|
|
|
|
|
2023-11-19 18:06:53 +01:00
|
|
|
myserver = { config, ... }: {
|
2023-07-01 18:46:19 +02:00
|
|
|
imports = [
|
|
|
|
./configuration.nix
|
2023-12-26 08:31:59 +01:00
|
|
|
selfhostblocks.inputs.sops-nix.nixosModules.default
|
2023-11-19 18:06:53 +01:00
|
|
|
selfhostblocks.nixosModules.x86_64-linux.default
|
2023-07-01 18:46:19 +02:00
|
|
|
];
|
|
|
|
|
2023-12-09 17:32:28 +01:00
|
|
|
# Used by colmena to know which target host to deploy to.
|
|
|
|
deployment = {
|
|
|
|
targetHost = "example";
|
|
|
|
targetUser = "nixos";
|
|
|
|
targetPort = 2222;
|
|
|
|
};
|
|
|
|
|
2023-11-19 18:06:53 +01:00
|
|
|
shb.ldap = {
|
|
|
|
enable = true;
|
|
|
|
domain = "example.com";
|
|
|
|
subdomain = "ldap";
|
|
|
|
ldapPort = 3890;
|
2023-12-09 19:16:41 +01:00
|
|
|
webUIListenPort = 17170;
|
2023-11-19 18:06:53 +01:00
|
|
|
dcdomain = "dc=example,dc=com";
|
2023-12-09 19:16:41 +01:00
|
|
|
ldapUserPasswordFile = config.sops.secrets."lldap/user_password".path;
|
|
|
|
jwtSecretFile = config.sops.secrets."lldap/jwt_secret".path;
|
|
|
|
};
|
|
|
|
sops.secrets."lldap/user_password" = {
|
|
|
|
sopsFile = ./secrets.yaml;
|
|
|
|
mode = "0440";
|
|
|
|
owner = "lldap";
|
|
|
|
group = "lldap";
|
|
|
|
restartUnits = [ "lldap.service" ];
|
|
|
|
};
|
|
|
|
sops.secrets."lldap/jwt_secret" = {
|
2023-11-19 18:06:53 +01:00
|
|
|
sopsFile = ./secrets.yaml;
|
2023-12-09 19:16:41 +01:00
|
|
|
mode = "0440";
|
|
|
|
owner = "lldap";
|
|
|
|
group = "lldap";
|
|
|
|
restartUnits = [ "lldap.service" ];
|
2023-11-19 18:06:53 +01:00
|
|
|
};
|
|
|
|
|
2023-07-01 18:46:19 +02:00
|
|
|
shb.home-assistant = {
|
|
|
|
enable = true;
|
2023-11-19 18:06:53 +01:00
|
|
|
domain = "example.com";
|
2023-12-09 19:16:41 +01:00
|
|
|
ldapEndpoint = "http://127.0.0.1:${builtins.toString config.shb.ldap.webUIListenPort}";
|
2023-07-01 18:46:19 +02:00
|
|
|
subdomain = "ha";
|
|
|
|
sopsFile = ./secrets.yaml;
|
|
|
|
};
|
2023-11-19 18:06:53 +01:00
|
|
|
|
2023-11-20 08:11:03 +01:00
|
|
|
# Set to true for more debug info with `journalctl -f -u nginx`.
|
|
|
|
shb.nginx.accessLog = false;
|
|
|
|
shb.nginx.debugLog = false;
|
2023-07-01 18:46:19 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|