18 lines
604 B
Nix
18 lines
604 B
Nix
{
|
|
git01 = { config, lib, pkgs, ... }:
|
|
{
|
|
deployment.targetHost = "10.253.18.103";
|
|
networking.hostName = "git01"; # Define your hostname
|
|
imports = [ ./hw/git01.nix ./base/configuration.nix ];
|
|
services.nfs.server = {
|
|
enable=true;
|
|
exports= ''
|
|
/data 10.253.18.0/24(insecure,rw,sync,no_subtree_check,crossmnt,fsid=0,no_root_squash)
|
|
/vol 10.253.18.0/24(insecure,rw,sync,no_subtree_check,crossmnt,fsid=0,no_root_squash)
|
|
'';
|
|
};
|
|
networking.firewall.allowedTCPPorts = [2049 111 20048];
|
|
networking.firewall.allowedUDPPorts = [2049 111 20048];
|
|
};
|
|
}
|