mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-03-10 19:18:17 +01:00
9 lines
175 B
Nix
9 lines
175 B
Nix
{host, ...}: let
|
|
inherit (import ../../hosts/${host}/variables.nix) enableNFS;
|
|
in {
|
|
services = {
|
|
rpcbind.enable = enableNFS;
|
|
nfs.server.enable = enableNFS;
|
|
};
|
|
}
|