5 lines
104 B
Nix
5 lines
104 B
Nix
|
{ config, lib, ... }:
|
||
|
{
|
||
|
users.groups.nfsShare.gid = lib.mkIf config.services.nfs.server.enable 983;
|
||
|
}
|