nixos/modules/hardware/thunderbolt/default.nix

20 lines
333 B
Nix
Raw Normal View History

2024-07-28 21:08:02 +02:00
{
config,
lib,
pkgs,
...
}:
2023-01-08 00:46:09 +01:00
let
cfg = config.my.hardware.thunderbolt;
in
{
options.my.hardware.thunderbolt = {
enable = lib.mkEnableOption "thunderbolt configuration";
};
config = lib.mkIf cfg.enable {
2024-07-28 21:08:02 +02:00
environment.systemPackages = with pkgs; [ thunderbolt ];
2023-01-08 00:46:09 +01:00
services.hardware.bolt.enable = true;
};
}