add acme option
This commit is contained in:
@@ -1,6 +1,16 @@
|
||||
{ config, pkgs, lib, inputs, ... }:
|
||||
with lib;
|
||||
let
|
||||
cfg = config.custom.services.acme;
|
||||
in
|
||||
{
|
||||
options.custom.services.acme = {
|
||||
enable = mkEnableOption "Enables acme";
|
||||
};
|
||||
config = lib.mkIf cfg.enable {
|
||||
security.acme = {
|
||||
acceptTerms = true;
|
||||
defaults.email = "7265381+Kropatz@users.noreply.github.com";
|
||||
acceptTerms = true;
|
||||
defaults.email = "7265381+Kropatz@users.noreply.github.com";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{ pkgs, config, ...}:
|
||||
{
|
||||
imports = [
|
||||
./acme.nix
|
||||
./kubernetes.nix
|
||||
./kavita.nix
|
||||
./nginx.nix
|
||||
|
||||
Reference in New Issue
Block a user