* replicated etcd setup for redundancy * use Flannel network overlay * naming conventions * new repo structure * etc.
20 lines
732 B
Nix
20 lines
732 B
Nix
{
|
|
git01 = { config, lib, pkgs, ... }:
|
|
{
|
|
deployment.targetHost = "10.253.18.103";
|
|
networking.hostName = "git01"; # Define your hostname
|
|
imports = [ ./hw/git01.nix ./git01/configuration.nix ];
|
|
services.nfs.server = {
|
|
enable=true;
|
|
exports= ''
|
|
/data 10.253.18.104(insecure,rw,sync,no_subtree_check,crossmnt,fsid=0)
|
|
/data 10.253.18.100(insecure,rw,sync,no_subtree_check,crossmnt,fsid=0)
|
|
/data 10.253.18.102(insecure,rw,sync,no_subtree_check,crossmnt,fsid=0)
|
|
/data 10.253.18.101(insecure,rw,sync,no_subtree_check,crossmnt,fsid=0)
|
|
'';
|
|
};
|
|
networking.firewall.allowedTCPPorts = [2049 111 20048];
|
|
networking.firewall.allowedUDPPorts = [2049 111 20048];
|
|
};
|
|
}
|