depot/hosts/VEGAS/services/nfs/default.nix
2022-01-14 22:49:38 +01:00

13 lines
208 B
Nix

{ lib, tools, ... }:
{
imports = [ ./exports.nix ];
services.nfs = {
server = {
enable = true;
};
idmapd.settings = {
General.Domain = lib.mkForce tools.meta.domain;
};
};
}