aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/nixos/modules/services/networking/rpcbind.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/nixos/modules/services/networking/rpcbind.nix')
-rw-r--r--nixpkgs/nixos/modules/services/networking/rpcbind.nix46
1 files changed, 46 insertions, 0 deletions
diff --git a/nixpkgs/nixos/modules/services/networking/rpcbind.nix b/nixpkgs/nixos/modules/services/networking/rpcbind.nix
new file mode 100644
index 00000000000..0a5df698709
--- /dev/null
+++ b/nixpkgs/nixos/modules/services/networking/rpcbind.nix
@@ -0,0 +1,46 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+{
+
+ ###### interface
+
+ options = {
+
+ services.rpcbind = {
+
+ enable = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Whether to enable `rpcbind', an ONC RPC directory service
+ notably used by NFS and NIS, and which can be queried
+ using the rpcinfo(1) command. `rpcbind` is a replacement for
+ `portmap`.
+ '';
+ };
+
+ };
+
+ };
+
+
+ ###### implementation
+
+ config = mkIf config.services.rpcbind.enable {
+ environment.systemPackages = [ pkgs.rpcbind ];
+
+ systemd.packages = [ pkgs.rpcbind ];
+
+ systemd.services.rpcbind = {
+ wantedBy = [ "multi-user.target" ];
+ };
+
+ users.users.rpc = {
+ group = "nogroup";
+ uid = config.ids.uids.rpc;
+ };
+ };
+
+}