nixos-configs/devices/cluster/modules/pcsd.nix
matt1432 e61ada3cd2
All checks were successful
Discord / discord commits (push) Has been skipped
refactor: add default in device modules and put home state ver in common
2024-09-05 08:17:23 -04:00

67 lines
1.2 KiB
Nix

{
config,
pcsd,
...
}: let
inherit (config.sops) secrets;
in {
imports = [pcsd.nixosModules.default];
services.pcsd = {
enable = true;
enableBinaryCache = true;
enableWebUI = true;
clusterName = "thingies";
corosyncKeyFile = secrets.corosync.path;
clusterUserPasswordFile = secrets.pcs-pass.path;
virtualIps = {
"caddy-vip" = {
ip = "10.0.0.130";
interface = "eno1";
group = "caddy-grp";
};
};
systemdResources = {
"unbound" = {
enable = true;
group = "caddy-grp";
startAfter = ["caddy-vip"];
};
"blocky" = {
enable = true;
group = "caddy-grp";
startAfter = ["unbound"];
};
"caddy" = {
enable = true;
group = "caddy-grp";
startAfter = ["blocky"];
};
"headscale" = {
enable = true;
group = "caddy-grp";
startAfter = ["caddy"];
};
};
nodes = [
{
name = "thingone";
nodeid = 1;
ring_addrs = ["10.0.0.244"];
}
{
name = "thingtwo";
nodeid = 2;
ring_addrs = ["10.0.0.159"];
}
];
};
}