Bluetooth

This commit is contained in:
Charlotte Van Petegem 2020-03-03 12:01:34 +01:00
parent 0a88804fc0
commit d5f311bfa9
3 changed files with 10 additions and 0 deletions

View file

@ -5,6 +5,7 @@
<home-manager/nixos>
./hardware.nix
./secret.nix
../../profiles/bluetooth/default.nix
../../profiles/common/default.nix
../../profiles/graphical/default.nix
];

View file

@ -5,6 +5,7 @@
<home-manager/nixos>
./hardware.nix
./secret.nix
../../profiles/bluetooth/default.nix
../../profiles/common/default.nix
../../profiles/graphical/default.nix
];

View file

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
hardware.bluetooth.enable = true;
services.blueman.enable = true;
hardware.pulseaudio.extraModules = [ pkgs.pulseaudio-modules-bt ];
hardware.pulseaudio.package = pkgs.pulseaudioFull;
}