Files
nixos-configuration/extra-hardware.nix
2023-07-25 10:59:45 +02:00

24 lines
354 B
Nix

{ config, pkgs, ... }:
{
###### Thunderbolt #######
services.hardware.bolt.enable = true;
environment.systemPackages = with pkgs; [
bolt
plasma5Packages.plasma-thunderbolt
];
###### Backlight #######
hardware.acpilight.enable = true;
##### bluetooth #####
hardware.bluetooth.enable = true;
#### RTL-SDR ####
hardware.rtl-sdr.enable = true;
}