sway: enable bluetooth (and gui bluetooth manager)

This commit is contained in:
colin 2022-06-16 14:51:37 -07:00
parent 7bd9a0abc9
commit d9f3209d8c

View File

@ -40,6 +40,9 @@ in
pulse.enable = true; pulse.enable = true;
}; };
hardware.bluetooth.enable = true;
services.blueman.enable = true;
networking.useDHCP = false; networking.useDHCP = false;
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
networking.wireless.enable = lib.mkForce false; networking.wireless.enable = lib.mkForce false;
@ -277,15 +280,16 @@ in
# } # }
# ''; # '';
}; };
colinsane.home-manager.extraPackages = [ colinsane.home-manager.extraPackages = with pkgs; [
pkgs.swaylock swaylock
pkgs.swayidle swayidle
pkgs.wl-clipboard wl-clipboard
pkgs.mako # notification daemon mako # notification daemon
# pkgs.dmenu # todo: use wofi? # dmenu # todo: use wofi?
# user stuff # user stuff
# pkgs.pavucontrol # pavucontrol
pkgs.sway-contrib.grimshot pkgs.sway-contrib.grimshot
gnome.gnome-bluetooth
]; ];
}; };
} }