depot/hosts/VEGAS/services/nfs/default.nix

13 lines
208 B
Nix
Raw Normal View History

2021-10-16 21:22:40 +03:00
{ lib, tools, ... }:
{
imports = [ ./exports.nix ];
services.nfs = {
server = {
enable = true;
};
idmapd.settings = {
General.Domain = lib.mkForce tools.meta.domain;
};
};
}