mirror of
https://github.com/librephoenix/nixos-config
synced 2025-04-20 17:24:35 +05:30
Setup bluetooth
This commit is contained in:
parent
c0afbb94f1
commit
9002e4f5cc
|
@ -26,6 +26,7 @@
|
||||||
../../user/lang/cc/cc.nix # C and C++ tools
|
../../user/lang/cc/cc.nix # C and C++ tools
|
||||||
../../user/lang/godot/godot.nix # Game development
|
../../user/lang/godot/godot.nix # Game development
|
||||||
../../user/pkgs/blockbench.nix # Blockbench
|
../../user/pkgs/blockbench.nix # Blockbench
|
||||||
|
../../user/hardware/bluetooth.nix # Bluetooth
|
||||||
];
|
];
|
||||||
|
|
||||||
home.stateVersion = "22.11"; # Please read the comment before changing.
|
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…
Reference in a new issue