Zephyrus-Nixos/networking-configuration.nix

16 lines
281 B
Nix
Raw Permalink Normal View History

2024-07-23 20:18:50 -04:00
{ pkgs, ... }:
{
# Enable networking and bluetooth
networking = {
hostName = "laptop";
networkmanager = {
enable = true;
wifi.macAddress = "random";
};
};
hardware.bluetooth.enable = true;
# Enable tailscale
services.tailscale.enable = true;
}