Archived
modularized rpcbind enable and added to server config
Check NixOS configurations / eval-hosts (push) Failing after 13m58s
Check NixOS configurations / eval-hosts (push) Failing after 13m58s
This commit is contained in:
@@ -17,6 +17,7 @@
|
|||||||
../../modules/raspi/mount-data.nix
|
../../modules/raspi/mount-data.nix
|
||||||
../../modules/services/nextcloud-cron-job.nix
|
../../modules/services/nextcloud-cron-job.nix
|
||||||
../../modules/services/docker-health-to-gotify.nix
|
../../modules/services/docker-health-to-gotify.nix
|
||||||
|
../../modules/services/enable-rpcbind.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
@@ -27,7 +28,7 @@
|
|||||||
nfs-utils
|
nfs-utils
|
||||||
];
|
];
|
||||||
boot.supportedFilesystems = [ "nfs" ];
|
boot.supportedFilesystems = [ "nfs" ];
|
||||||
services.rpcbind.enable = true;
|
#services.rpcbind.enable = true;
|
||||||
systemd.tmpfiles.rules = [
|
systemd.tmpfiles.rules = [
|
||||||
"L+ /home/nixos/docker - - - - /mnt/docker/config"
|
"L+ /home/nixos/docker - - - - /mnt/docker/config"
|
||||||
"d /mnt/docker 0755 nixos users -"
|
"d /mnt/docker 0755 nixos users -"
|
||||||
|
|||||||
@@ -10,11 +10,12 @@
|
|||||||
imports =
|
imports =
|
||||||
[ # Include the results of the hardware scan.
|
[ # Include the results of the hardware scan.
|
||||||
../../common/configuration.nix
|
../../common/configuration.nix
|
||||||
../../modules/nix/cache-client.nix
|
../../modules/nix-cache/client.nix
|
||||||
../../modules/nix/remote-builder-client.nix
|
../../modules/remote-builder-client.nix
|
||||||
# ../../modules/nix/tailscale-exit-node.nix
|
# ../../modules/nix/tailscale-exit-node.nix
|
||||||
# ../../modules/nix/enable-ip-forwarding.nix
|
# ../../modules/nix/enable-ip-forwarding.nix
|
||||||
../../modules/nix/beszel-agent.nix
|
../../modules/beszel/enable-agent.nix
|
||||||
|
../../modules/services/enable-rpcbind.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
@@ -162,7 +163,7 @@ services.nfs.server = {
|
|||||||
|
|
||||||
# services.openssh.settings.PermitRootLogin = "yes";
|
# services.openssh.settings.PermitRootLogin = "yes";
|
||||||
# Open ports in the firewall.
|
# Open ports in the firewall.
|
||||||
networking.firewall.allowedTCPPorts = [ 2049 111 ];
|
networking.firewall.allowedTCPPorts = [ 2049 ];
|
||||||
# networking.firewall.allowedUDPPorts = [ 111 2049 20048 ];
|
# networking.firewall.allowedUDPPorts = [ 111 2049 20048 ];
|
||||||
# Or disable the firewall altogether.
|
# Or disable the firewall altogether.
|
||||||
# networking.firewall.enable = false;
|
# networking.firewall.enable = false;
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
{ ... }
|
||||||
|
{
|
||||||
|
services.rpcbind.enable = true;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user