feat: add bluetooth

This commit is contained in:
EinEtwas 2024-10-22 21:22:34 +02:00
parent 994434da74
commit c59e70e0c8
4 changed files with 13 additions and 0 deletions

3
home/blueman.nix Normal file
View file

@ -0,0 +1,3 @@
{
services.blueman-applet.enable = true;
}

View file

@ -64,6 +64,7 @@
./udiskie.nix
./keyring.nix
./ssh.nix
./blueman.nix
];
home.pointerCursor = {

8
modules/bluetooth.nix Normal file
View file

@ -0,0 +1,8 @@
{
hardware.bluetooth = {
enable = true;
powerOnBoot = false;
};
services.blueman.enable = true;
}

View file

@ -11,5 +11,6 @@
./polkit.nix
./networking.nix
./diskservices.nix
./bluetooth.nix
];
}