1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2026-01-18 11:11:06 +00:00
ncc/modules/hostname.mod.nix
2025-10-16 22:43:02 +03:00

10 lines
210 B
Nix

{
darwinModules.hostname =
{ config, ... }:
{
system.defaults.smb = {
NetBIOSName = config.networking.hostName;
ServerDescription = config.networking.hostName;
};
};
}