32 lines
703 B
Nix
32 lines
703 B
Nix
{ lib, config, ... }:
|
|
|
|
let cfg = config.lab.dataHost;
|
|
in
|
|
{
|
|
imports = [
|
|
./storage.nix
|
|
./terraform-database
|
|
./ssh-certificates.nix
|
|
./k3s
|
|
./backups.nix
|
|
./networking.nix
|
|
./data-sharing.nix
|
|
./dns
|
|
];
|
|
|
|
options.lab.dataHost.enable = lib.mkOption {
|
|
default = false;
|
|
type = lib.types.bool;
|
|
description = ''
|
|
Whether this machine holds application data.
|
|
This enables NFS and PostgreSQL to serve this data, and sets up backups.
|
|
Also enables networking on the DMZ to enable serving data.
|
|
'';
|
|
};
|
|
|
|
config.lab = lib.mkIf cfg.enable {
|
|
backups.enable = true;
|
|
data-sharing.enable = true;
|
|
networking.allowDMZConnectivity = true;
|
|
};
|
|
}
|