mirror of
https://github.com/blahai/nyx.git
synced 2025-01-18 19:10:21 +00:00
Global: add bluetooth config
This commit is contained in:
parent
b1e0edcb52
commit
06337bdaec
2 changed files with 8 additions and 0 deletions
7
modules/nixos/services/bluetooth.nix
Normal file
7
modules/nixos/services/bluetooth.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, config, ... }: {
|
||||
hardware.bluetooth = {
|
||||
enable = true;
|
||||
settings = { General = { Experimental = true; }; };
|
||||
};
|
||||
services.blueman.enable = true;
|
||||
}
|
|
@ -3,5 +3,6 @@
|
|||
imports = [
|
||||
./vpn.nix
|
||||
./pipewire.nix
|
||||
./bluetooth.nix
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue