config/hosts/git.nix

19 lines
239 B
Nix

{
roles,
hlConfig,
}:
{
hostname = "git";
managed = true;
ip = "192.168.10.11";
roles = with roles; [
postgres
forgejo
];
config = {
forgejo.domain = "git.${hlConfig.domain}";
};
stateVersion = "24.05";
}