Global: add bluetooth config

This commit is contained in:
blahai 2024-11-15 18:40:31 +02:00
parent b1e0edcb52
commit 06337bdaec
Signed by: blahai
SSH key fingerprint: SHA256:ZfCryi+V64yG+vC1ZIIsqgvBCmA31tTi7RJ6M8CvpRc
2 changed files with 8 additions and 0 deletions

View file

@ -0,0 +1,7 @@
{ pkgs, config, ... }: {
hardware.bluetooth = {
enable = true;
settings = { General = { Experimental = true; }; };
};
services.blueman.enable = true;
}

View file

@ -3,5 +3,6 @@
imports = [ imports = [
./vpn.nix ./vpn.nix
./pipewire.nix ./pipewire.nix
./bluetooth.nix
]; ];
} }