mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-08-05 05:46:33 +05:30
12 lines
176 B
Nix
12 lines
176 B
Nix
{
|
|
flake.modules.nixos.hardware = { pkgs, ... }: {
|
|
hardware.bluetooth = {
|
|
enable = true;
|
|
};
|
|
|
|
environment.systemPackages = [
|
|
pkgs.bluetui
|
|
];
|
|
};
|
|
}
|