zaneyos/config/system/nfs.nix
2024-02-06 00:44:36 -06:00

14 lines
265 B
Nix

{ config, ... }:
let inherit (import ../../options.nix) nfs; in
lib.mkIf ("${nfs}" == "on") {
fileSystems."${nfsMountPoint}" = {
device = "${nfsDevice}";
fsType = "nfs";
};
services = {
rpcbind.enable = true;
nfs.server.enable = true;
};
}