Files
nixos-configuration/extra-hardware.nix
2022-10-17 14:36:07 +02:00

15 lines
243 B
Nix

{ config, pkgs, ... }:
{
###### Thunderbolt #######
services.hardware.bolt.enable = true;
###### Backlight #######
hardware.acpilight.enable = true;
##### bluetooth #####
hardware.bluetooth.enable = true;
services.blueman.enable = true;
}