thor bluetooth

This commit is contained in:
2024-04-24 11:26:05 +02:00
parent 426fa02ebf
commit dbdfd1924d
2 changed files with 22 additions and 0 deletions

21
hosts/thor/bluetooth.nix Normal file
View File

@@ -0,0 +1,21 @@
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
Experimental = true;
};
};
};
services.blueman.enable = true;
}

View File

@@ -22,6 +22,7 @@
# ./users.nix # ./users.nix
../common ../common
./gui.nix ./gui.nix
./bluetooth.nix
# Import your generated (nixos-generate-config) hardware configuration # Import your generated (nixos-generate-config) hardware configuration
./hardware-configuration.nix ./hardware-configuration.nix