modularized rpcbind enable and added to server config
Check NixOS configurations / eval-hosts (push) Failing after 13m58s

This commit is contained in:
2026-07-13 02:00:55 +10:00
parent 985d4e4bfa
commit fcb8f5e01e
3 changed files with 11 additions and 5 deletions
+2 -1
View File
@@ -17,6 +17,7 @@
../../modules/raspi/mount-data.nix
../../modules/services/nextcloud-cron-job.nix
../../modules/services/docker-health-to-gotify.nix
../../modules/services/enable-rpcbind.nix
];
@@ -27,7 +28,7 @@
nfs-utils
];
boot.supportedFilesystems = [ "nfs" ];
services.rpcbind.enable = true;
#services.rpcbind.enable = true;
systemd.tmpfiles.rules = [
"L+ /home/nixos/docker - - - - /mnt/docker/config"
"d /mnt/docker 0755 nixos users -"
+5 -4
View File
@@ -10,11 +10,12 @@
imports =
[ # Include the results of the hardware scan.
../../common/configuration.nix
../../modules/nix/cache-client.nix
../../modules/nix/remote-builder-client.nix
../../modules/nix-cache/client.nix
../../modules/remote-builder-client.nix
# ../../modules/nix/tailscale-exit-node.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";
# Open ports in the firewall.
networking.firewall.allowedTCPPorts = [ 2049 111 ];
networking.firewall.allowedTCPPorts = [ 2049 ];
# networking.firewall.allowedUDPPorts = [ 111 2049 20048 ];
# Or disable the firewall altogether.
# networking.firewall.enable = false;