Files
nixy/nixos/bluetooth.nix
T
Hadi b0ab5932e4 refactor variables & theme
Former-commit-id: 276756d998
2025-03-04 20:58:20 +01:00

9 lines
181 B
Nix

{ pkgs, ... }: {
environment.systemPackages = with pkgs; [ blueman ];
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
services.blueman.enable = true;
}