mirror of
https://github.com/bartvdbraak/dotfiles.git
synced 2025-04-27 06:31:20 +00:00
12 lines
251 B
Nix
12 lines
251 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Only power the Bluetooth controller after logon
|
|
hardware.bluetooth.enable = true;
|
|
hardware.bluetooth.powerOnBoot = false;
|
|
|
|
# Use Overskride bluetooth client
|
|
environment.systemPackages = with pkgs; [
|
|
overskride
|
|
];
|
|
}
|