added bluetooth support
This commit is contained in:
parent
52992924a7
commit
3449e5a858
3 changed files with 15 additions and 0 deletions
0
extract.sh
Executable file → Normal file
0
extract.sh
Executable file → Normal file
13
hosts/katana/bluetooth.nix
Normal file
13
hosts/katana/bluetooth.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
{config, pkgs, }:
|
||||||
|
{
|
||||||
|
hardware.bluetooth = {
|
||||||
|
enable = true; # enables support for Bluetooth
|
||||||
|
powerOnBoot = true; # powers up the default Bluetooth controller on boot
|
||||||
|
settings = {
|
||||||
|
General = {
|
||||||
|
Enable = "Source,Sink,Media,Socket";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
services.blueman.enable = true;
|
||||||
|
}
|
||||||
|
|
@ -1,6 +1,8 @@
|
||||||
{ modulesPath, config, pkgs, lib, self, ... }:
|
{ modulesPath, config, pkgs, lib, self, ... }:
|
||||||
{
|
{
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
bluez
|
||||||
|
blueman
|
||||||
nerdfonts
|
nerdfonts
|
||||||
pkg-config
|
pkg-config
|
||||||
ripgrep
|
ripgrep
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue