Files
nix-config/modules/nixos/hardware/bluetooth.nix
2026-07-15 12:04:30 +05:30

12 lines
176 B
Nix

{
flake.modules.nixos.hardware = { pkgs, ... }: {
hardware.bluetooth = {
enable = true;
};
environment.systemPackages = [
pkgs.bluetui
];
};
}