15 lines
243 B
Nix
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;
|
|
} |