Files
nix-config/modules/nixos/hardware/bluetooth.nix
2026-09-11 01:59:55 +05:30

12 lines
174 B
Nix

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