Fix typo in nixos/modules/tasks/filesystems/nfs.nix.

statd should be cfg.statd.

Robbin C 528ebb4e c76da480

+1 -1
+1 -1
nixos/modules/tasks/filesystems/nfs.nix
··· 90 90 serviceConfig.Type = "forking"; 91 91 serviceConfig.ExecStart = '' 92 92 @${pkgs.nfs-utils}/sbin/rpc.statd rpc.statd --no-notify \ 93 - ${if cfg.statdPort != null then "-p ${toString statdPort}" else ""} 93 + ${if cfg.statdPort != null then "-p ${toString cfg.statdPort}" else ""} 94 94 ''; 95 95 serviceConfig.Restart = "always"; 96 96 };