Zephyrus-Nixos/networking-configuration.nix
2024-07-23 20:18:50 -04:00

16 lines
281 B
Nix

{ pkgs, ... }:
{
# Enable networking and bluetooth
networking = {
hostName = "laptop";
networkmanager = {
enable = true;
wifi.macAddress = "random";
};
};
hardware.bluetooth.enable = true;
# Enable tailscale
services.tailscale.enable = true;
}