lenovo: add bluetooth

This commit is contained in:
outfoxxed 2025-07-24 22:06:53 -07:00
parent fd6088af37
commit bb600267a0
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E

View file

@ -1,4 +1,4 @@
{ pkgs, ... }: {
{ config, pkgs, ... }: {
imports = [
./hardware.nix
./hyprland
@ -6,4 +6,11 @@
system.stateVersion = "23.11";
networking.hostName = "lenovo";
time.timeZone = "America/Vancouver";
home-manager.users.${config.main-user} = {
services.blueman-applet.enable = true;
};
hardware.bluetooth.enable = true;
services.blueman.enable = true;
}