12 lines
194 B
Nix
12 lines
194 B
Nix
|
_: {
|
||
|
security.acme = {
|
||
|
acceptTerms = true;
|
||
|
defaults.email = "acme@buffet.sh";
|
||
|
certs."buffet.sh" = {
|
||
|
extraDomainNames = [
|
||
|
"bitwarden.buffet.sh"
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|