nixos/machines/kitt.nix

81 lines
1.3 KiB
Nix
Raw Normal View History

2023-05-16 21:23:04 +00:00
/*
Name: https://en.wikipedia.org/wiki/KITT
Why: Kitt used to have this role before (as well as email and dns)
Type: VM
Hardware: -
From: 2023
Role: LDAP Server
Notes:
2023-05-16 21:23:04 +00:00
*/
{
pkgs,
lib,
nodes,
...
}: let
2023-05-16 21:23:04 +00:00
# name of the server, sets teh hostname and record for it
name = "kitt";
ip_pub = "193.1.99.74";
hostname = "${name}.skynet.ie";
2023-05-19 17:21:33 +00:00
#hostname = ip_pub;
2023-05-16 21:23:04 +00:00
in {
imports = [
../applications/ldap/server.nix
2023-08-28 17:01:34 +00:00
../applications/discord.nix
../applications/bitwarden/vaultwarden.nix
../applications/bitwarden/bitwarden_sync.nix
2023-05-16 21:23:04 +00:00
];
deployment = {
targetHost = hostname;
targetPort = 22;
targetUser = null;
tags = ["active-core"];
2023-05-16 21:23:04 +00:00
};
# add this server to dns
skynet_dns.records = [
{
record = name;
r_type = "A";
value = ip_pub;
server = true;
}
{
record = ip_pub;
r_type = "PTR";
value = hostname;
}
];
2023-05-16 21:23:04 +00:00
2023-07-15 14:05:57 +00:00
services.skynet_backup = {
host = {
ip = ip_pub;
name = name;
};
};
2023-05-16 21:23:04 +00:00
services.skynet_ldap = {
enable = true;
host = {
ip = ip_pub;
name = name;
};
};
2023-08-28 17:01:34 +00:00
services.discord_bot = {
enable = true;
};
services.skynet_vaultwarden = {
enable = true;
host = {
ip = ip_pub;
name = name;
};
};
2023-05-16 21:23:04 +00:00
}