nixos/preload: init
[NixPkgs.git] / nixos / modules / services / network-filesystems / nfsd.nix
blobc9e1cbcbbda483fa3a4a26a6e43c10ecc55c03ef
1 { config, lib, pkgs, ... }:
3 with lib;
5 let
7   cfg = config.services.nfs.server;
9   exports = pkgs.writeText "exports" cfg.exports;
14   imports = [
15     (mkRenamedOptionModule [ "services" "nfs" "lockdPort" ] [ "services" "nfs" "server" "lockdPort" ])
16     (mkRenamedOptionModule [ "services" "nfs" "statdPort" ] [ "services" "nfs" "server" "statdPort" ])
17   ];
19   ###### interface
21   options = {
23     services.nfs = {
25       server = {
26         enable = mkOption {
27           type = types.bool;
28           default = false;
29           description = lib.mdDoc ''
30             Whether to enable the kernel's NFS server.
31           '';
32         };
34         extraNfsdConfig = mkOption {
35           type = types.str;
36           default = "";
37           description = lib.mdDoc ''
38             Extra configuration options for the [nfsd] section of /etc/nfs.conf.
39           '';
40         };
42         exports = mkOption {
43           type = types.lines;
44           default = "";
45           description = lib.mdDoc ''
46             Contents of the /etc/exports file.  See
47             {manpage}`exports(5)` for the format.
48           '';
49         };
51         hostName = mkOption {
52           type = types.nullOr types.str;
53           default = null;
54           description = lib.mdDoc ''
55             Hostname or address on which NFS requests will be accepted.
56             Default is all.  See the {option}`-H` option in
57             {manpage}`nfsd(8)`.
58           '';
59         };
61         nproc = mkOption {
62           type = types.int;
63           default = 8;
64           description = lib.mdDoc ''
65             Number of NFS server threads.  Defaults to the recommended value of 8.
66           '';
67         };
69         createMountPoints = mkOption {
70           type = types.bool;
71           default = false;
72           description = lib.mdDoc "Whether to create the mount points in the exports file at startup time.";
73         };
75         mountdPort = mkOption {
76           type = types.nullOr types.int;
77           default = null;
78           example = 4002;
79           description = lib.mdDoc ''
80             Use fixed port for rpc.mountd, useful if server is behind firewall.
81           '';
82         };
84         lockdPort = mkOption {
85           type = types.nullOr types.int;
86           default = null;
87           example = 4001;
88           description = lib.mdDoc ''
89             Use a fixed port for the NFS lock manager kernel module
90             (`lockd/nlockmgr`).  This is useful if the
91             NFS server is behind a firewall.
92           '';
93         };
95         statdPort = mkOption {
96           type = types.nullOr types.int;
97           default = null;
98           example = 4000;
99           description = lib.mdDoc ''
100             Use a fixed port for {command}`rpc.statd`. This is
101             useful if the NFS server is behind a firewall.
102           '';
103         };
105       };
107     };
109   };
112   ###### implementation
114   config = mkIf cfg.enable {
116     services.nfs.extraConfig = ''
117       [nfsd]
118       threads=${toString cfg.nproc}
119       ${optionalString (cfg.hostName != null) "host=${cfg.hostName}"}
120       ${cfg.extraNfsdConfig}
122       [mountd]
123       ${optionalString (cfg.mountdPort != null) "port=${toString cfg.mountdPort}"}
125       [statd]
126       ${optionalString (cfg.statdPort != null) "port=${toString cfg.statdPort}"}
128       [lockd]
129       ${optionalString (cfg.lockdPort != null) ''
130         port=${toString cfg.lockdPort}
131         udp-port=${toString cfg.lockdPort}
132       ''}
133     '';
135     services.rpcbind.enable = true;
137     boot.supportedFilesystems = [ "nfs" ]; # needed for statd and idmapd
139     environment.etc.exports.source = exports;
141     systemd.services.nfs-server =
142       { enable = true;
143         wantedBy = [ "multi-user.target" ];
145         preStart =
146           ''
147             mkdir -p /var/lib/nfs/v4recovery
148           '';
149       };
151     systemd.services.nfs-mountd =
152       { enable = true;
153         restartTriggers = [ exports ];
155         preStart =
156           ''
157             mkdir -p /var/lib/nfs
159             ${optionalString cfg.createMountPoints
160               ''
161                 # create export directories:
162                 # skip comments, take first col which may either be a quoted
163                 # "foo bar" or just foo (-> man export)
164                 sed '/^#.*/d;s/^"\([^"]*\)".*/\1/;t;s/[ ].*//' ${exports} \
165                 | xargs -d '\n' mkdir -p
166               ''
167             }
168           '';
169       };
171   };