Files
NixConfig/nixos/conf/GM/cfgeral/wireless.nix
T
2026-01-17 15:31:55 -03:00

18 lines
325 B
Nix

{ config, lib, inputs, pkgs, ... }: {
## Configuração da internet
networking = {
networkmanager.enable = true;
interfaces.enp9s0.wakeOnLan.enable = true;
firewall.allowedTCPPorts = [ ];
firewall.allowedUDPPorts = [
];
};
## Ativar Bluetooth
hardware.bluetooth.enable = true;
}