mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-11 18:18:37 +02:00
9 lines
195 B
Nix
9 lines
195 B
Nix
_: {
|
|
flake.nixosModules.bluetooth = {pkgs, ...}: {
|
|
hardware.bluetooth.enable = true;
|
|
environment.systemPackages = with pkgs; [
|
|
blueman # GTK-based Bluetooth Manager
|
|
];
|
|
};
|
|
}
|