21 lines
303 B
Nix
21 lines
303 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;
|
|
|
|
}
|