rice/hosts/ami/acme.nix

15 lines
268 B
Nix
Raw Normal View History

2024-01-25 15:54:05 +00:00
_: {
security.acme = {
acceptTerms = true;
defaults.email = "acme@buffet.sh";
certs."buffet.sh" = {
extraDomainNames = [
"404.buffet.sh"
"bitwarden.buffet.sh"
2024-05-01 12:30:23 +00:00
"rap.buffet.sh"
"buffets.kitchen"
];
2024-01-25 15:54:05 +00:00
};
};
}