Files
nixos-conf/modules/nfs.nix
T
2026-07-23 01:24:08 +02:00

16 lines
234 B
Nix

{
services.nfs.server = {
enable = true;
exports = {
"/media/music" = {
"192.168.132.0/24" = [
"rw"
"async"
"no_subtree_check"
"fsid=1"
];
};
};
};
}