11 lines
271 B
Nix
11 lines
271 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
config = lib.mkIf (config.networking.hostName == "ThinkCentre-Server-004") {
|
|
sVAULTWARDEN.enable = true;
|
|
sROUNDCUBE.enable = true;
|
|
sSEARXNG.enable = true;
|
|
sACME.enable = true;
|
|
sNEWT.enable = true;
|
|
};
|
|
}
|