homeACE
This commit is contained in:
20
system-modules/nx2site.nix
Executable file
20
system-modules/nx2site.nix
Executable file
@@ -0,0 +1,20 @@
|
||||
{ config, pkgs, lib, user, host, ... }:
|
||||
{
|
||||
imports = if host == "NxACE" then [
|
||||
|
||||
] else [];
|
||||
|
||||
config = lib.mkIf (host == "NxACE") {
|
||||
# security.acme = {
|
||||
# acceptTerms = true;
|
||||
# defaults.email = "acme@nx2.site";
|
||||
# certs."nx2.site" = {
|
||||
# dnsProvider = "namecheap";
|
||||
# environmentFile = ../secrets/nx2site/namecheap-creds.env;
|
||||
# };
|
||||
# };
|
||||
services.nginx = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user