24 lines
354 B
Nix
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;
|
|
|
|
}
|