{ config, ... }:
let
  inherit (config.modules.meta) hostname;
in
{
  imports = [
    ./wifi.nix
    ./bluetooth.nix
  ];
  config = {
    networking.hostName = hostname;
  };
}