NixFiles/systems/mdesktop/networking.nix

18 lines
314 B
Nix
Raw Normal View History

2023-03-09 08:33:38 +00:00
{ config, lib, ... }:
{
# DHCP
networking.useDHCP = lib.mkDefault true;
# Hostname
2023-04-15 19:27:45 +01:00
networking.hostName = "MDesktop";
2023-03-09 08:33:38 +00:00
# Enable wireless support & configuration
networking.wireless.enable = true;
networking.wireless.networks = {
2023-03-11 22:28:20 +00:00
"BT-C5CPMR_5GEXT" = {
2023-03-09 08:33:38 +00:00
psk = "hN3LtFrkp36bXc";
};
};
}