dotfiles/hosts/h002/nfs-data.nix
RingOfStorms (Joshua Bell) 06f5092a21 fix mount for nfs
2025-12-28 17:52:48 -06:00

13 lines
220 B
Nix

{ pkgs, ... }:
{
services.nfs.server = {
enable = true;
exports = ''
/data 100.64.0.0/10(rw,sync,no_subtree_check,fsid=0,crossmnt)
'';
};
environment.systemPackages = [
pkgs.nfs-utils
];
}