nixos/legacy/modules/thunderbolt.nix
2022-12-05 20:32:39 +01:00

7 lines
132 B
Nix

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