mirror of
https://github.com/librephoenix/nixos-config
synced 2025-09-05 12:34:02 +05:30
Setup bluetooth
This commit is contained in:
parent
c0afbb94f1
commit
9002e4f5cc
2 changed files with 11 additions and 0 deletions
|
@ -26,6 +26,7 @@
|
|||
../../user/lang/cc/cc.nix # C and C++ tools
|
||||
../../user/lang/godot/godot.nix # Game development
|
||||
../../user/pkgs/blockbench.nix # Blockbench
|
||||
../../user/hardware/bluetooth.nix # Bluetooth
|
||||
];
|
||||
|
||||
home.stateVersion = "22.11"; # Please read the comment before changing.
|
||||
|
|
10
user/hardware/bluetooth.nix
Normal file
10
user/hardware/bluetooth.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
blueman
|
||||
];
|
||||
services = {
|
||||
blueman-applet.enable = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue