Files
nixos-configuration/extra-hardware.nix

21 lines
334 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;
services.blueman.enable = true;
}