nixos/legacy/modules/thunderbolt.nix

8 lines
132 B
Nix
Raw Normal View History

2020-11-16 21:14:46 +01:00
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
thunderbolt
];
services.hardware.bolt.enable = true;
}