nixos/extra/thunderbolt.nix
2021-06-02 10:40:12 +02:00

7 lines
132 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
thunderbolt
];
services.hardware.bolt.enable = true;
}