NixFiles/system/networking.nix

18 lines
304 B
Nix
Raw Normal View History

2023-03-09 08:33:38 +00:00
{ config, lib, ... }:
{
# DHCP
networking.useDHCP = lib.mkDefault true;
# Hostname
networking.hostName = "luna";
# Enable wireless support & configuration
networking.wireless.enable = true;
networking.wireless.networks = {
"BT-C5CPMR" = {
psk = "hN3LtFrkp36bXc";
};
};
}