From 86b1ddf7ec9272001255fbf7dc5561ad02e59837 Mon Sep 17 00:00:00 2001 From: tomoron Date: Mon, 21 Oct 2024 14:39:54 +0200 Subject: [PATCH] add bluetooth to laptop --- hosts/laptop.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/hosts/laptop.nix b/hosts/laptop.nix index 0101ef4..74a8087 100644 --- a/hosts/laptop.nix +++ b/hosts/laptop.nix @@ -10,9 +10,6 @@ networking.wireless.enable = true; networking.networkmanager.enable = false; - networking.firewall.allowedTCPPorts = [ 5900 ]; - networking.firewall.allowedUDPPorts = [ 5900 ]; - environment.systemPackages = with pkgs; [ acpi tlp @@ -26,4 +23,6 @@ services.libinput.enable = true; services.libinput.touchpad.clickMethod = "clickfinger"; services.libinput.touchpad.tapping = false; + + hardware.bluetooth.enable = true; }