nixos-config/common/networking.nix
2025-07-25 10:55:20 -04:00

8 lines
No EOL
117 B
Nix
Executable file

{ hostName, config, ... }:
{
networking = {
networkmanager.enable = true;
hostName = "${hostName}";
};
}