config/hosts/cloud.nix

20 lines
254 B
Nix

{
roles,
hlConfig,
}:
{
hostname = "cloud";
managed = true;
ip = "192.168.10.12";
roles = with roles; [
postgres
podman
freshrss
];
config = {
freshrss.domain = "rss.${hlConfig.domain}";
};
stateVersion = "24.05";
}