dotfiles/hosts/h002/nfs-data.nix
RingOfStorms (Joshua Bell) 93ab323d0e add nfs storage h002
2025-12-28 17:31:14 -06:00

13 lines
227 B
Nix

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