mirror of
https://github.com/RGBCube/ncc
synced 2026-01-18 11:11:06 +00:00
10 lines
210 B
Nix
10 lines
210 B
Nix
{
|
|
darwinModules.hostname =
|
|
{ config, ... }:
|
|
{
|
|
system.defaults.smb = {
|
|
NetBIOSName = config.networking.hostName;
|
|
ServerDescription = config.networking.hostName;
|
|
};
|
|
};
|
|
}
|