mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
9 lines
229 B
Nix
9 lines
229 B
Nix
{ ... }:
|
|
{
|
|
networking.networkmanager.enable = true;
|
|
networking.firewall.allowedUDPPorts = [ 8000 ];
|
|
networking.firewall.allowedTCPPorts = [ 8000 ];
|
|
hardware.bluetooth.enable = true;
|
|
hardware.bluetooth.powerOnBoot = true;
|
|
}
|